2020年1月28日
摘要: 1 #include <iostream> 2 #include <queue> 3 4 using namespace std; 5 6 int main() 7 { 8 // queue也很简单 9 // push,pop,size,front 10 queue<int> q1; 11 q1.p 阅读全文
posted @ 2020-01-28 20:59 带你AK,带你飞 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <stack> 3 4 using namespace std; 5 6 int main() 7 { 8 // 栈比较简单 9 // push,pop,size,top 10 // 基本操作很少,很容易实现和使用 11 // 一般可 阅读全文
posted @ 2020-01-28 20:53 带你AK,带你飞 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 阅读一本好书,实际上是在阅读你自己。读书,不只是与作者灵魂的交谈,更是与自己心灵的一次对话。你是一个怎么样的人,你想要成为一个怎么样的人,你如何能成为你想要成为的人,在读书中,你都能找到答案。多读书,读好书,好读书。立志,自今日起,每日必读书。 你以为,别人都像你一样,不知努力,殊不知,别人都在努力 阅读全文
posted @ 2020-01-28 20:43 带你AK,带你飞 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <deque> 3 4 using namespace std; 5 6 int main() 7 { 8 // 插入 9 deque<int> de; 10 for(int i=0;i<5;++i) 11 { 12 de.push_ 阅读全文
posted @ 2020-01-28 18:52 带你AK,带你飞 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <cstdio> 3 #include <vector> 4 5 using namespace std; 6 7 // 注意:vector在尾部添加或移动元素非常快,在中间操作非常耗时,因为它需要移动元素 8 9 10 int ma 阅读全文
posted @ 2020-01-28 17:35 带你AK,带你飞 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1 #include <string> 2 #include <iostream> 3 #include <cstring> 4 #include <algorithm> 5 6 using namespace std; 7 8 int to_lower(int c) 9 { 10 if (isup 阅读全文
posted @ 2020-01-28 11:53 带你AK,带你飞 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 求学于武汉,今日,由于某些原因,导致了一些不愉快的事情发生,当然,都是小事,但对于自己的情绪,还是带来了一定的影响的。 已过半日,细细想来,不过尔尔。情绪,时好时坏,想要变得更强,想要去往更广阔的天地,人,就必须要学会掌管自己的情绪。用良好的情绪,激励自己,让消极的情绪,烟消云散。心境不同,天差地别 阅读全文
posted @ 2020-01-28 10:24 带你AK,带你飞 阅读(120) 评论(0) 推荐(0) 编辑
  2020年1月27日
摘要: 1 // STL(标准模板库),由三大部分组成:容器,算法,迭代器 2 3 4 // STL六大组件:container(容器),algorthm(算法),iterator(迭代器) 5 // function object(仿函数),adaptor(适配器),allocator(空间适配器) 6 阅读全文
posted @ 2020-01-27 18:12 带你AK,带你飞 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Antenna Placement Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12104 Accepted: 5954 Description The Global Aerial Research Centre has be 阅读全文
posted @ 2020-01-27 17:31 带你AK,带你飞 阅读(123) 评论(0) 推荐(0) 编辑
摘要: Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 29547 Accepted: 15807 Description Bessie wants to navigate her spaceship through a dangerou 阅读全文
posted @ 2020-01-27 09:42 带你AK,带你飞 阅读(291) 评论(0) 推荐(0) 编辑