棧和隊列操做

#include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef enum BOOL { false = 0, true = 1 }bool; typedef struct Node { int data; //數據域 struct Node* pNext;//指針域 }NODE,*PNODE; typedef s
相關文章
相關標籤/搜索