摘要: Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. 阅读全文
posted @ 2017-03-17 16:17 小猴子爱吃桃 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of 阅读全文
posted @ 2017-03-17 15:40 小猴子爱吃桃 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below 阅读全文
posted @ 2017-03-16 22:28 小猴子爱吃桃 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 Have you thought about this? Here are some good questions t 阅读全文
posted @ 2017-02-21 16:29 小猴子爱吃桃 阅读(1422) 评论(0) 推荐(0) 编辑
摘要: PS参考线及其辅助 视图-->新建参考线 也可以快捷键Ctrl+R,显示区的上侧和左侧就会出现标尺。任意点选中,并拖动标尺,便会出现浅蓝色的辅助线。只有在移动工具下,才能拖动某一条参考线。 删除参考线的方式,哪里来的回哪里去,拖动参考线把它移动到标尺处。上面的标尺对应的是水平参考线,左边的标尺对应的 阅读全文
posted @ 2017-02-19 09:54 小猴子爱吃桃 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 题目描述: You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes 阅读全文
posted @ 2017-02-17 14:09 小猴子爱吃桃 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 用VS2010编写C++程序,编译时出现如下错误: 修改方法: 右击项目,选择属性 点击确定,重新编译,错误解决。 阅读全文
posted @ 2016-12-05 19:05 小猴子爱吃桃 阅读(896) 评论(0) 推荐(0) 编辑
摘要: maven的生命周期: clean 清理项目 default 构建项目 site 生成项目站点 三个周期是相互独立的,但是有顺序的,前面的阶段执行时,会触发后面的两个阶段。 clean 清理项目包含三个阶段 pre-clean 执行清理前的工作 clean 清理上一次构建生成的所有文件 post-c 阅读全文
posted @ 2016-11-29 09:39 小猴子爱吃桃 阅读(305) 评论(0) 推荐(0) 编辑
摘要: maven的文件夹: projectName src -main -java -package -test -java -package -resource maven的命令: mvn - v 查看maven版本 mvn compile 编译 mvn test 测试 mvn package 打包 m 阅读全文
posted @ 2016-11-28 18:14 小猴子爱吃桃 阅读(334) 评论(1) 推荐(0) 编辑
摘要: 3 30 1000 false Test false 1... 阅读全文
posted @ 2016-11-28 10:03 小猴子爱吃桃 阅读(183) 评论(0) 推荐(0) 编辑