数据结构与算法——栈模拟队列(C语言)
2021/7/23 14:05:45
本文主要是介绍数据结构与算法——栈模拟队列(C语言),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
文章目录
- 前言
- 栈模拟队列
- 总结
前言
大二,刚刚开始学数据结构与算法,写得不好。。。。
栈模拟队列
使用栈实现队列的下列操作:
1.init():初始化队列
2.push(x):将1个元素放入队列的尾部。
3.pop(): 从队列首部移除元素。
4.display():展示队列元素。
#include <stdlib.h> #include <stdio.h> typedef struct stack { int data; struct stack *next; } Stack; Stack *Init(int n) { Stack *top = NULL; int i; Stack *node; for (i = 1; i < n+1; i++) { node = (Stack *) malloc(sizeof(Stack)); node->data = i; node->next = top; top = node; printf("入队: %d\n",node->data); } return top; } void Display(Stack *top) { Stack *p = top; while (p->next != NULL) { printf("%d ", p->data); p = p->next; } printf("%d ", p->data); printf("\n"); } Stack *Push(Stack *top, int data) { Stack *node = (Stack *) malloc(sizeof(Stack)); node->data = data; node->next = top; top = node; printf("入队: %d\n",top->data); return top; } Stack *Pop(Stack *top) { Stack *p = top; printf("出队:%d\n",p->data); top = top->next; free(p); return top; } Stack * Queue(Stack *top,int data){ Stack *node = (Stack *) malloc(sizeof(Stack)); node->data = data; node->next = top; top = node; return top; } int main() { Stack *z1, *z2,*p; z1 = Init(10); z2 = Init(0); p=z1; while (p->next!=NULL){ z2=Queue(z2,p->data); p=p->next; } z2=Queue(z2,p->data); z2=Pop(z2); z2=Pop(z2); z2=Pop(z2); Display(z2); }
总结
就离谱 算法也是很难。这篇关于数据结构与算法——栈模拟队列(C语言)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-05Snowflake Cortex大语言模型函数:让AI数据查询更简单高效
- 2024-11-05Azure开发更轻松:VS Code中的GitHub Copilot for Azure公测版
- 2024-11-05Databricks与Snowflake:数据处理实力大比拼
- 2024-11-05Sealos Devbox 使用教程:使用 Cursor 开发一个高仿苹果官网
- 2024-11-05在 etcd 中怎么看有多少客户端在监视特定键 (watch)-icode9专业技术文章分享
- 2024-11-05uniapp 怎么实现返回上一页效果-icode9专业技术文章分享
- 2024-11-05UniApp 中则么实现检查一个 URL 是否以 "http://" 开头功能-icode9专业技术文章分享
- 2024-11-05怎么使用nslookup指定dns解析?-icode9专业技术文章分享
- 2024-11-05shopify 中 的 analyticsToken 一般多久过期?-icode9专业技术文章分享
- 2024-11-05array_intersect_key 有没有前后顺序-icode9专业技术文章分享