摘要: 首先要有个MinGW(我这里借用ceemple的编译器 ,mingw32) 设置环境变量 右击我的电脑,点属性 高级 环境变量。 在系统环境变量在PATH里加入 (具体路径请根据你的MinGW选择); 新建 变量,如果有的话,在值中加入 ; 新建 变量,值设为 ; (可以测试下,cmd g++ v) 阅读全文
posted @ 2015-02-18 20:55 clq.lib 阅读(376) 评论(0) 推荐(0) 编辑
摘要: You are given two linked lists representing two non-negative numbers. >Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)>Output: 7 -> 0 -> 8*以下是c++代码*```cpp/** * D... 阅读全文
posted @ 2015-02-18 20:20 clq.lib 阅读(123) 评论(0) 推荐(0) 编辑
摘要: **Given an array of integers, find two numbers such that they add up to a specific target number.**Input: numbers={2, 7, 11, 15}, target=9Output: ... 阅读全文
posted @ 2015-02-18 15:51 clq.lib 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Given a digit string, return all possible letter combinations that the number could represent.这里用递归,递归式举例:$f(2)=[a,b,c]$, $f(23)=[a+f(3),b+f(3),c+f(3)... 阅读全文
posted @ 2015-02-18 13:00 clq.lib 阅读(148) 评论(0) 推荐(0) 编辑