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) 编辑
 
摘要: 题目:给定一个链表L和另一个链表P,它们包含以升序排列的整数。操作printLots打印L中那些由P所指定的位置上的元素。写出过程printLots(L,P)。只可以使用公有的STL容器操作。该过程的运行时间是多少?我编写的程序如下:#include using namespace std;temp... 阅读全文
posted @ 2016-01-19 16:38 顾南星 阅读(493) 评论(0) 推荐(0) 编辑
 
摘要: 你的所作所为全都被我看穿啦! 阅读全文
posted @ 2016-01-19 12:24 顾南星 阅读(433) 评论(0) 推荐(0) 编辑