摘要: Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321问题描述: 将整数个十百位反序输出。注意特殊情况:1)溢出情况:To check for overflow/underflow... 阅读全文
posted @ 2015-07-04 17:47 江湖小妞 阅读(133) 评论(0) 推荐(0) 编辑
摘要: The string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font fo... 阅读全文
posted @ 2015-07-04 16:49 江湖小妞 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Java部分:1. 到Oracle官网下载需要版本的JDK:http://www.oracle.com/technetwork/java/javase/archive-139210.html2. 下载.exe文件后,点击安装,可自由改变目录;3. 更改环境变量:我的电脑--右键”属性“--”高级系统... 阅读全文
posted @ 2015-07-01 17:01 江湖小妞 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1. 系统镜像2. 驱动精灵:官网http://www.drivergenius.com/3. 谷歌浏览器Chrome:官网http://www.google.cn/chrome/browser/desktop/index.html 去广告插件:https://adblockplus.org/en... 阅读全文
posted @ 2015-06-27 15:37 江湖小妞 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 移步http://blog.csdn.net/feecooling/article/details/7525140MATLAB中文手册命令汇总http://wenku.baidu.com/view/5bd49c16f18583d0496459ef.html?re=view 阅读全文
posted @ 2015-06-27 14:07 江湖小妞 阅读(869) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree andsum =... 阅读全文
posted @ 2015-05-26 17:20 江湖小妞 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo... 阅读全文
posted @ 2015-05-26 10:38 江湖小妞 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].问题描述:给出一个整数K,返回杨辉三角的第k行(行号从0开始)。问题解决:要首先计算出前面一行,一次类推... 阅读全文
posted @ 2015-05-25 20:48 江湖小妞 阅读(118) 评论(0) 推荐(0) 编辑
摘要: GivennumRows, generate the firstnumRowsof Pascal's triangle.For example, givennumRows= 5,Return[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]... 阅读全文
posted @ 2015-05-25 20:22 江湖小妞 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 在J2EE平台中,Spring是一种优秀的轻量级企业应用解决方案。它的核心技术就是IoC(控制反转)和AOP(面向切面编程)。1.什么是控制反转与依赖注入。 IoC的英文是Inversion of Control即控制反转。开发者在使用类之前,需要先创建对象的实例。但是IoC将创建实例的任务交... 阅读全文
posted @ 2015-05-25 15:46 江湖小妞 阅读(222) 评论(0) 推荐(0) 编辑