C 基礎數據結構---隊列 ADT

最近閒來無事,不想浪費青春,就動手翻看以前的筆記和書本,將作一些記錄node 下面是經過C語言實現的隊列:code #include <assert.h> #include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node *next; }*Node; typedef struct Queue {
相關文章
相關標籤/搜索