会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
顾南星
千江有水千江月,万里无云万里天
博客园
首页
新随笔
联系
订阅
管理
2016年1月19日
栈实现符号平衡检测
摘要: 检测{}[]()是否一一配对:#include using namespace std;template class Vector{ public: explicit Vector( int initSize = 0 ) : theSize( initSize ),...
阅读全文
posted @ 2016-01-19 21:50 顾南星
阅读(367)
评论(0)
推荐(0)
编辑
简单的栈
摘要: 以下是实现以及应用的一个例程:#include using namespace std;template class Vector{ public: explicit Vector( int initSize = 0 ) : theSize( initSize ),...
阅读全文
posted @ 2016-01-19 21:11 顾南星
阅读(283)
评论(0)
推荐(0)
编辑
简单的变长数组
摘要: 以下是实现以及应用的一个例程:#include using namespace std;template class Vector{ public: explicit Vector( int initSize = 0 ) : theSize( initSize ),...
阅读全文
posted @ 2016-01-19 20:28 顾南星
阅读(211)
评论(0)
推荐(0)
编辑
约瑟夫环问题
摘要: 题目:有N个人做成一圈玩游戏,编号为1至N。从编号为1的人开始传递马铃薯。M次传递后,持有马铃薯的人退出游戏。圈缩小,然后游戏从退出的人下面的人开始,继续进行。最终留下来的人获胜。写出一个程序解决约瑟夫环问题,此时M和N为任意值。编程如下:#include using namespace std;t...
阅读全文
posted @ 2016-01-19 17:47 顾南星
阅读(202)
评论(0)
推荐(0)
编辑
根据存放位置数据的链表P打印链表L的元素
摘要: 题目:给定一个链表L和另一个链表P,它们包含以升序排列的整数。操作printLots打印L中那些由P所指定的位置上的元素。写出过程printLots(L,P)。只可以使用公有的STL容器操作。该过程的运行时间是多少?我编写的程序如下:#include using namespace std;temp...
阅读全文
posted @ 2016-01-19 16:38 顾南星
阅读(493)
评论(0)
推荐(0)
编辑
拆解cytom!c's 的keyFile保护
摘要: 你的所作所为全都被我看穿啦!
阅读全文
posted @ 2016-01-19 12:24 顾南星
阅读(433)
评论(0)
推荐(0)
编辑
公告