Loading

上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: 题目描述:Regular Expression MatchingImplement regular expression matching with support for'.'and'*''.' Matches any single character.'*' Matches zero or mo... 阅读全文
posted @ 2015-02-07 13:31 Yano_nankai 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Palindrome NumberDetermine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie... 阅读全文
posted @ 2015-02-07 13:17 Yano_nankai 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 题目描述:String to Integer (atoi)Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge,... 阅读全文
posted @ 2015-02-07 13:08 Yano_nankai 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Reverse IntegerReverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321Have you thought about this?Here are some g... 阅读全文
posted @ 2015-02-07 13:00 Yano_nankai 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 题目描述:ZigZag ConversionThe string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this patt... 阅读全文
posted @ 2015-02-07 12:51 Yano_nankai 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Longest Palindromic SubstringGiven a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and ... 阅读全文
posted @ 2015-02-06 21:57 Yano_nankai 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Median of Two Sorted ArraysThere are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overal... 阅读全文
posted @ 2015-02-06 21:35 Yano_nankai 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Longest Substring Without Repeating CharactersGiven a string, find the length of the longest substring without repeating characters. For example,... 阅读全文
posted @ 2015-01-23 15:44 Yano_nankai 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Add Two NumbersYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nod... 阅读全文
posted @ 2015-01-23 10:08 Yano_nankai 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 题目描述:Two SumGiven an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices o... 阅读全文
posted @ 2015-01-22 20:40 Yano_nankai 阅读(224) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页