会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
vincand
博客园
首页
新随笔
联系
订阅
管理
2019年1月12日
数据结构--队列
摘要: #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)
2018年12月5日
c++中next_permutation的使用
摘要: #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)
2018年12月4日
c++ sort函数用法
摘要: #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)
2018年12月3日
理解递归
摘要: #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)
c++中substr的用法
摘要: #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)
公告