摘要:
1、题目: 2、代码: include include typedef struct qnode qlink; struct qnode { int element; qlink next; } Qnode; typedef struct lque Queue; typedef struct lqu 阅读全文
摘要:
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 阅读全文