上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possibl... 阅读全文
posted @ 2015-10-31 13:05 smile_tina 阅读(670) 评论(0) 推荐(1) 编辑
摘要: Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,... 阅读全文
posted @ 2015-10-29 14:16 smile_tina 阅读(367) 评论(0) 推荐(1) 编辑
摘要: HashMap map = new HashMap();System.out.println(map.put('a', 'b')); //nullSystem.out.println(map.put('a', 'b')); //bSystem.out.println(map.put('a', 'c'... 阅读全文
posted @ 2015-10-15 21:05 smile_tina 阅读(228) 评论(0) 推荐(1) 编辑
摘要: 链表定义class ListNode { int val; ListNode next; ListNode(int x) { val = x; }}View Code非递归实现很简单,只需要遍历一遍链表,在遍历过程中,把遍历的节点一次插入到头部。public L... 阅读全文
posted @ 2015-10-14 21:40 smile_tina 阅读(12548) 评论(0) 推荐(1) 编辑
摘要: 数据类型:数据类型 类型名 位长 取值范围 默认值布尔型 boolean 1 true,false false字节型 byte 8 -128-127 0字符型 char 16 ‘\u000’-\uffff ‘\u0000’短整型 short 16 -32768-32767 0整型 int 32 -2... 阅读全文
posted @ 2015-10-12 10:23 smile_tina 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 先贴上代码 1 public String multiply(String num1, String num2) { 2 String str = ""; 3 StringBuffer sb = new StringBuffer(num1); 4 nu... 阅读全文
posted @ 2015-10-12 10:16 smile_tina 阅读(991) 评论(0) 推荐(0) 编辑
摘要: 在本例中: 我们要用表member中的name,age字段数据去更新user中的同字段名的数据,条件是当user 中的id字段值与member中的id字段值相等时进行更新.SQL Server语法:UPDATE { table_name WITH ( [ ...n ] ) | view_name ... 阅读全文
posted @ 2015-09-14 15:06 smile_tina 阅读(2958) 评论(0) 推荐(0) 编辑
摘要: --CREATE NONCLUSTERED INDEX qqNum on QQNumber100(QQNumber)declare @i int DECLARE @sql_str VARCHAR(MAX)set @i=102 while @i<1000 begin set @sql_str = 'C... 阅读全文
posted @ 2015-08-20 23:15 smile_tina 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 错误log :XMLHttpRequestcannotloadhttp://192.168.17.131:8080/wm/topology/links/json.No'Access-Control-Allow-Origin'headerispresentontherequestedresource.... 阅读全文
posted @ 2015-05-28 16:46 smile_tina 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 此对象主要有两个方法:保存数据:localStorage.setItem(Key, value);读取数据:localStorage.getItem(Key);Key:表示你要存入的键名称,此名称可以随便命名,可以按照变量的意思来理解。Value:表示值,也就是你要存入Key中的值,可以按照变量赋值... 阅读全文
posted @ 2015-05-28 09:42 smile_tina 阅读(349) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页