摘要:
#include #include #include // TODO: 在此处引用程序需要的其他头文件 struct String{ char* ch; int length; }; bool Assign_String(String* str, char* chars); bool Destroy_String(String* str); bool Clear_... 阅读全文
posted @ 2017-10-28 11:36
汪昕
阅读(1296)
评论(0)
推荐(0)
摘要:
#include #include #include #define MaxQueueSize 100 // TODO: 在此处引用程序需要的其他头文件 struct Node{ int data; Node* next; }; struct Queue{ Node* front; Node* rear; }; //初始化队列 bool Init_Qu... 阅读全文
posted @ 2017-10-28 09:00
汪昕
阅读(1153)
评论(0)
推荐(0)
浙公网安备 33010602011771号