博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++ 11 practise -1-
阅读量:5097 次
发布时间:2019-06-13

本文共 1215 字,大约阅读时间需要 4 分钟。

c++ 11 practise -1-

2013-04-12 11:09AM

#include 
#include
#include
#include
#include
using namespace std;int main(){ array
arr; get<0>(arr) = 1; get<1>(arr) = 2; get<2>(arr) = 3; cout << "(" << get<0>(arr) << get<1>(arr) << get<2>(arr) << ")" << endl; // forward_list forward_list
words1;// {"the", "greatest", "country", "in", "the", "world"}; words1.push_front("the"); words1.push_front("greatest"); words1.push_front("salesman"); words1.push_front("in"); words1.push_front("the"); words1.push_front("world"); long double f = 23.43; cout << to_string(f) << endl; for(auto ci = words1.begin(); ci != words1.end(); ++ci) cout << *ci << " "; cout << endl; forward_list
words2(words1.begin(), words1.end()); forward_list
words3(words1); //forward_list
words4 (words1.size(), "Mo"); // unordered_set // set,map : based on unordered_set
set1; set1.insert(343); set1.insert(3); set1.insert(34); set1.insert(43); set1.insert(33); set1.insert(443); auto d = set1.find(43); if(d != set1.end()) cout << "find it" << endl; return 0;}

转载于:https://www.cnblogs.com/SunWentao/archive/2013/04/12/3016239.html

你可能感兴趣的文章
时延(分组交换网)是如何产生的?
查看>>
由扩展方法引申出的编程思维
查看>>
[golang] go的typeswitch guard(类型区别)语法和type assertion(类型断言)语法
查看>>
Linux-03 Linux下的tar命令
查看>>
如何做信竞
查看>>
linux常用命令
查看>>
chap Class
查看>>
acm课程练习2--1001
查看>>
什么是publickeytoken及publickeytoken的作用
查看>>
深入理解计算机系统
查看>>
[置顶]新的博客在简书上!
查看>>
Spark 论文篇-大型集群上的快速和通用数据处理架构(中英双语)
查看>>
729. My Calendar I
查看>>
java实现,使用opencv合成全景图,前端使用krpano展示
查看>>
Hibernate的锁机制-总结
查看>>
Mysql报错:1172 - Result consisted of more than one row
查看>>
vue-cli目录结构介绍002
查看>>
offsetLeft、offsetTop、offsetWidth、offsetHeight
查看>>
树形dp
查看>>
git学习
查看>>