随笔分类 -  剑指offer题

摘要:复习C语言数组队列 #include <stdio.h>#include <string.h> #define MAX 1000 typedef struct Queues{ int date[MAX]; int front; int rear;}Queue; Queue queue; void C 阅读全文
posted @ 2017-07-20 16:15 Cloud_strife 阅读(2531) 评论(0) 推荐(1)
摘要:创建了一个C语言链表和栈。包含输入数据在链表中,保存在栈里,再从栈里读取出来。 #include <stdio.h>#include <string.h> #define MAX 1000 typedef struct node{ int value; struct node *next;}Node 阅读全文
posted @ 2017-07-20 14:35 Cloud_strife 阅读(252) 评论(0) 推荐(0)