上一页 1 ··· 23 24 25 26 27
摘要: sublimeClang 是github上面的开源项目,可用于C/C++的自动补全 github:https://github.com/quarnster/SublimeClang 配置sublime text 2和sublimeCLang C/C++环境的步骤: 1.下载解压到/opt目录中,创建 阅读全文
posted @ 2015-08-22 22:43 wxquare 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/coolmeme/article/details/43986163 阅读全文
posted @ 2015-08-18 20:50 wxquare 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 1 /************************************************************************* 2 > File Name: merge_sort.cpp 3 > Author: 4 > Description: ... 阅读全文
posted @ 2015-07-26 11:20 wxquare 阅读(184) 评论(0) 推荐(0) 编辑
摘要: //连个链表相加//#include "stdafx.h"#include using namespace std;// single linked list nodestruct listNode{ int val; listNode *next; listNode(int x)... 阅读全文
posted @ 2015-05-21 21:15 wxquare 阅读(158) 评论(0) 推荐(0) 编辑
摘要: ---恢复内容开始---//n:盘子个数 a,b,c用字符表示三根柱子void hanoiTower(int n, char a, char b, char c){ static int step = 0; if (n == 1) { cout << ++step<... 阅读全文
posted @ 2015-05-09 23:07 wxquare 阅读(128) 评论(0) 推荐(0) 编辑
摘要: ---恢复内容开始---#include "stdafx.h"#include #include //文件流#include #include using namespace std;void queenSolve(int rowCurrent, int n, int *&queenlist, i... 阅读全文
posted @ 2015-05-09 23:05 wxquare 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 两篇比较好的博客,暂时还没不怎么理解!http://www.cnblogs.com/salomon/archive/2012/06/04/2534787.htmlhttp://www.cnblogs.com/qicosmos/p/4480460.html 阅读全文
posted @ 2015-05-08 09:55 wxquare 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1.把C++当成一门新的语言学习(和C没啥关系!真的。); 2.看《Thinking In C++》,不要看《C++变成死相》; 3.看《The C++ Programming Language》和《Inside The C++ Object Model》,不要因为他们很难而我们自己是初学者所以就不... 阅读全文
posted @ 2015-05-08 08:53 wxquare 阅读(363) 评论(0) 推荐(1) 编辑
上一页 1 ··· 23 24 25 26 27