2017年5月23日

STL优缺点

摘要: C++ STL 的实现:1.vector 底层数据结构为数组 ,支持快速随机访问2.list 底层数据结构为双向链表,支持快速增删3.deque 底层数据结构为一个中央控制器和多个缓冲区,详细见STL源码剖析P146,支持首尾(中间不能)快速增删,也支持随机访问4.stack 底层一般用23实现,封 阅读全文

posted @ 2017-05-23 21:36 zhaodun 阅读(825) 评论(0) 推荐(0) 编辑

输出最大回文数

摘要: #include #include #include #include using namespace std; int main() { string str; //int i=0,j=0; while (getline(cin,str)) { int R=1; for (int i=1;i=0&&((i+j)R) R=j*2+1; } //判断abba... 阅读全文

posted @ 2017-05-23 10:38 zhaodun 阅读(809) 评论(0) 推荐(0) 编辑

导航