网站首页 站内搜索

搜索结果

查询Tags标签: QueuePtr,共有 2条记录
  • 2021-9-27【数据结构/严蔚敏】【链队列】

    链队列 #include<bits/stdc++.h> using namespace std; #define QElemType int #define Status int //---------链队列实现-------------- typedef struct QNode{QElemType data;struct QNode *next; } QNode, *QueuePtr;typedef struct{QueuePtr front;QueuePtr re…

    2021/9/28 6:12:48 人评论 次浏览
  • 2021-9-27【数据结构/严蔚敏】【链队列】

    链队列 #include<bits/stdc++.h> using namespace std; #define QElemType int #define Status int //---------链队列实现-------------- typedef struct QNode{QElemType data;struct QNode *next; } QNode, *QueuePtr;typedef struct{QueuePtr front;QueuePtr re…

    2021/9/28 6:12:48 人评论 次浏览
扫一扫关注最新编程教程