码迷,mamicode.com
首页 >  
搜索关键字:pairs    ( 1028个结果
Swap Nodes in Pairs
题目 Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only const...
分类:其他好文   时间:2014-06-18 11:53:39    阅读次数:138
Generate Parentheses
题目 Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: "((()))", "(()())", "(())()", "()...
分类:其他好文   时间:2014-06-17 22:59:06    阅读次数:223
Leetcode:Swap Nodes in Pairs 链表成对交换节点
Swap Nodes in Pairs:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2...
分类:其他好文   时间:2014-06-13 17:04:27    阅读次数:180
java Map及Map.Entry的使用
Map接口不是Collection接口的继承。Map接口用于维护键/值对(key/value pairs)。该接口描述了从不重复的键到值的映射。 (1) 添加、删除操作: Object put(Object key, Object value): 将互相关联的一个关键字与一个值放入该映像。如果该.....
分类:编程语言   时间:2014-06-13 00:12:27    阅读次数:336
[cc150] Find all valid combinations of n-pairs of parentheses
Implement an algorithm to print all valid ( properly opened and closed) combinations of n-pairs of parentheses.思路:比如 n = 3, ((())) 就是一个valid combinati...
分类:其他好文   时间:2014-06-11 13:19:00    阅读次数:306
一入python深似海--Dictionaries
定义及应用 定义 stuff = {'name': 'Zed', 'age': 36, 'height': 6*12+2}#key:value pairs 实例 # create a mapping of state to abbreviation states = { 'Oregon': 'OR', 'Florida': 'FL', 'California':...
分类:编程语言   时间:2014-06-10 15:46:14    阅读次数:266
Java集合Map接口与Map.Entry学习
Java集合Map接口与Map.Entry学习Map接口不是Collection接口的继承。Map接口用于维护键/值对(key/value pairs)。该接口描述了从不重复的键到值的映射。 (1) 添加、删除操作: Object put(Object key, Object value): 将.....
分类:编程语言   时间:2014-06-09 16:09:07    阅读次数:368
每日算法之二十:Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: "((()))", "(()())", "(())()", "()(())", "()()...
分类:其他好文   时间:2014-06-05 02:15:14    阅读次数:262
[LeetCode]Swap Nodes in Pairs
Swap Nodes in Pairs...
分类:其他好文   时间:2014-05-22 23:55:33    阅读次数:390
poj 3694 Network
DescriptionA network administrator manages a large network. The network consists of N computers and M links between pairs of computers. Any pair of co...
分类:Web程序   时间:2014-05-21 20:23:55    阅读次数:419
1028条   上一页 1 ... 99 100 101 102 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!