/*
*檔名稱:專案4-佇列陣列
*作 者:李慶耀
*完成日期:2023年11月22日
*版 本 號:v1.0
* 問題:
建立10個佇列,分別編號為0-9(處理為佇列陣列,編號即下標)。
輸入若干個正整數,以數字0作為結束。設輸入的值為x,其個位數字的大小為i,
則將x插入到編號為i的佇列中。最後輸出所有的非空佇列。
*/ 要求:要求將佇列處理成鏈式佇列,使用鏈式佇列演算法庫中定義的資料型別及演算法,程式中只包括乙個函式(main函式),入隊和出隊等操作直接在main函式中呼叫即可。
liqueue.h:
[cpp]view plain
copy
#ifndef liqueue_h_included
#define liqueue_h_included
typedef
intelemtype;
typedef
struct
qnode
qnode; //鏈隊資料結點型別定義
typedef
struct
liqueue; //鏈隊型別定義
void
initqueue(liqueue *&q);
//初始化鏈隊
void
destroyqueue(liqueue *&q);
//銷毀鏈隊
bool
queueempty(liqueue *q);
//判斷鏈隊是否為空
intqueuelength(liqueue *q);
//返回佇列中資料元素個數
void
enqueue(liqueue *&q,elemtype e);
//入隊
bool
dequeue(liqueue *&q,elemtype &e);
//出隊
#endif // liqueue_h_included
liqueue.cpp:
[cpp]view plain
copy
#include
#include
#include "liqueue.h"
void
initqueue(liqueue *&q)
//初始化鏈隊
void
destroyqueue(liqueue *&q)
//銷毀鏈隊
} free(p);
free(q); //釋放鏈隊節點占用空間
} bool
queueempty(liqueue *q)
//判斷鏈隊是否為空
intqueuelength(liqueue *q)
//返回佇列中資料元素個數
return
(n);
} void
enqueue(liqueue *&q,elemtype e)
//入隊
} bool
dequeue(liqueue *&q,elemtype &e)
//出隊
main.cpp:
[cpp]view plain
copy
#include
#include
#include "liqueue.h"
#define n 10
intmain()
//輸出各個佇列
printf("按個位數整理到各個佇列中後,各隊列出隊的結果是: \n"
);
for(i=0; i
printf("\n"
);
} //銷毀各個佇列
資料結構第七周專案 佇列陣列
檔名稱 多檔案組織 作 者 張昕 完成日期 2017年12月17日 版 本 號 v1.0 建立10個佇列,分別編號為0 9 處理為佇列陣列,編號即下標 輸入若干個正整數,以數字0作為結束。設輸入的值為x,其個位數字的大小為i,則將x插入到編號為i的佇列中。最後輸出所有的非空佇列。要求將佇列處理成鏈式...
資料結構第七周專案4 佇列陣列
作 者 劉浩 版 本 號 v1.0 問題描述 建立10個佇列,分別編號為0 9 處理為佇列陣列,編號即下標 輸入若干個正整數,以數字0作為結束。設輸入的值為x,其個位數字的大小為i,則將x插入到編號為i的佇列中。最後輸出所有的非空佇列。要求將佇列處理成鏈式佇列,使用鏈式佇列演算法庫中定義的資料型別及...
第七周 專案四 佇列陣列
檔名稱 test.cpp 完成日期 2015年10月23日 問題描述 排隊看病模擬 include include typedef struct qnode qnode 鏈隊結點型別 typedef struct qutype 鏈隊型別 void seedoctor if find printf 輸...