摘要:
转自http://hi.baidu.com/wangruiy01/blog/item/867552d0de8bdc339a502721.html 先看下面一段程序:#include using namespace std; class Person{public:virtual ~Person()/... 阅读全文
摘要:
1.文件中有一组整数,要求排序后输出到另一个文件中 答案: #i nclude #i nclude using namespace std; void Order(vector& data) //bubble sort{int count = data.size() ;for ( int i = 0... 阅读全文