摘要: #include<stdio.h> struct queue { int data[100]; //队列的主体 int head; //队首 int tail; //队尾 }; main() { struct queue q; int i; //初始化队列 q.head=1; q.tail=1; f 阅读全文
posted @ 2019-01-12 14:57 vincand 阅读(143) 评论(0) 推荐(0)
摘要: #include<iostream>#include<algorithm>using namespace std;main(){ int i,j=0; int a[5]={1,2,3,4,5}; do { for(i=0;i<5;i++){ cout <<a[i]<<" "; } cout <<en 阅读全文
posted @ 2018-12-05 15:17 vincand 阅读(269) 评论(0) 推荐(0)
摘要: #include<iostream>#include<algorithm>using namespace std;int main(){ int i=0; int a[5]={0,1,2,3,4}; sort(a,a+5); for(i;i<5;i++){ cout<<a[i]; }} 其中sort 阅读全文
posted @ 2018-12-04 17:00 vincand 阅读(107) 评论(0) 推荐(0)
摘要: #include <iostream>#include <string>using namespace std;int box(int j){ cout<<"你在第几排"<<endl; if(j==2) cout<<"我在第一排"<<endl; else { box(j-1); } cout<<"我 阅读全文
posted @ 2018-12-03 21:54 vincand 阅读(112) 评论(0) 推荐(0)
摘要: #include <iostream>#include <string>using namespace std;int main(){ string s=("12345"); string a=s.substr(2); cout<<a<<endl;} 相当于从字符串第三位(包括第三位)开始重新组成字 阅读全文
posted @ 2018-12-03 21:22 vincand 阅读(114) 评论(0) 推荐(0)