摘要: 题目描述:Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.解题思路... 阅读全文
posted @ 2015-05-10 20:28 scottwang 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in ... 阅读全文
posted @ 2015-05-10 19:59 scottwang 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Given a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. A... 阅读全文
posted @ 2015-05-10 17:42 scottwang 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 问题描述:Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array... 阅读全文
posted @ 2015-05-10 16:40 scottwang 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the tel... 阅读全文
posted @ 2015-05-10 12:00 scottwang 阅读(1202) 评论(0) 推荐(0) 编辑
摘要: 题目描述: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 inte... 阅读全文
posted @ 2015-05-04 23:24 scottwang 阅读(290) 评论(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 su... 阅读全文
posted @ 2015-05-04 21:26 scottwang 阅读(1765) 评论(0) 推荐(0) 编辑
摘要: 小二好久没有更新博客了,真是罪过,最近在看linux的东西导致进度耽搁了,所以今晚睡觉前怒刷一题!问题描述:Write a function to find the longest common prefix string amongst an array of strings.解题思路:该问题就是... 阅读全文
posted @ 2015-05-03 23:35 scottwang 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 问题描述:Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.解题思路:上一题反过来就可以了,其实觉得这两道题很没有意思。代码如下:publ... 阅读全文
posted @ 2015-04-25 23:37 scottwang 阅读(238) 评论(1) 推荐(0) 编辑
摘要: 题目描述:Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.解题思路:这道题没什么技术含量,一个一个除10以及取模运算就行。代码如下:pu... 阅读全文
posted @ 2015-04-25 23:12 scottwang 阅读(181) 评论(0) 推荐(0) 编辑