2020年8月2日

队列(c语言链表实现)

摘要: #include <stdio.h> #include <stdlib.h> struct Node { int value; struct Node* next; }; typedef struct Node Node; struct Queue { Node *front; Node *rear 阅读全文

posted @ 2020-08-02 09:49 哈哈哈天蝎 阅读(367) 评论(0) 推荐(0)

导航