摘要: 1、题目: 2、代码: include include typedef struct qnode qlink; struct qnode { int element; qlink next; } Qnode; typedef struct lque Queue; typedef struct lqu 阅读全文
posted @ 2016-09-28 17:03 laixl 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1、题目: 2、代码: include include using namespace std; //以这组数据为例说明:10 2 //1 4 7 4 9 6 5 9 8 4 int main() { int n,m; cin n m; m=m 1; int i,j=0; int a[1001],b 阅读全文
posted @ 2016-09-28 16:59 laixl 阅读(343) 评论(13) 推荐(0) 编辑