用隊列解決農夫過河問題

#include <stdio.h> #include <stdlib.h> typedef int DataType; //順序隊列:類型和界面函數聲明 struct SeqQueue {// 順序隊列類型定義 int MAXNUM; // 隊列中最大元素個數 int f, r; DataType *q; }; typedef struct SeqQueue *PSe
相關文章
相關標籤/搜索