随笔分类 - 剑指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
阅读全文
摘要:创建了一个C语言链表和栈。包含输入数据在链表中,保存在栈里,再从栈里读取出来。 #include <stdio.h>#include <string.h> #define MAX 1000 typedef struct node{ int value; struct node *next;}Node
阅读全文

浙公网安备 33010602011771号