自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

無名黑洞

Time is not your enemy, forever is.

  • 博客(12)
  • 收藏
  • 关注

原创 Leetcode全数字问题

目录1、编号7 Reverse digits of an integer.2、编号8 Stringto Integer ATOI3、编号10 Container With Most Water4、编号12 Integer To Roman5、编号13 Roman To Integer6、编号27 Divide Two Integers7、编号37 Count and S

2014-02-07 12:05:02 3731

原创 Leetcode全字符问题

目录1、编号3 Longest Substring Without Repeating Characters2、编号6 ZigZag Conversion3、编号20 Valid Parentheses4、编号28 Implement strStr()5、编号31 Longest Valid Parentheses6、编号42 Multiply String

2014-02-07 08:09:26 4085

原创 Leetcode全排列问题

目录1、编号30 Next Permutation2、编号44 Permutations3、编号45 Permutations II4、编号60 Permutation Sequence1、编号30 Next PermutationImplement next permutation, which rearranges numbers into the lexicogr

2014-02-07 01:00:41 1410

原创 Leetcode全匹配问题

目录1、编号11 Regular Expression Matching2、编号29 Substring with Concatenation of All Words3、编号43 Wildcard Matching4、编号79 Word Search1、编号11 Regular Expression Matching2、编号29 Substri

2014-02-07 00:22:38 2312

原创 Leetcode全游戏问题

目录1、编号34 Valid SudokuDetermine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are filled with the character

2014-02-06 13:07:10 1890

原创 Leetcode全数组问题

目录1、编号2 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 overall run time complexity should be

2014-02-06 03:32:47 9205

原创 Leetcode全组合问题

目录1、编号17 Letter Combinations Of Phone NumberGiven a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the

2014-02-05 23:36:51 1726

原创 Leetcode全矩阵问题

目录1、编号48 Rotate ImageYou are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up: Could you do this in-place?可以硬算转了九十度后的目标矩阵和原矩阵各元素的

2014-02-05 15:55:41 1838

原创 Leetcode全链表问题

目录如果没有特殊说明,各题使用的链表数据结构如下:/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */1、编号4

2014-02-05 10:50:27 1982

原创 Leetcode全求和问题

目录1、编号1 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 of the two numbers such that they

2014-02-04 10:29:10 14198 2

原创 Leetcode全回文问题

目录:1、编号5 5_Longest Palindromic Substring2、编号9 Palindrome Number3、编号126 Valid Palindrome4、编号132 Palindrome Partitioning (DFS)5、编号133 Palindrome Partitioning II (DP)1、编号5 5_Longest Pal

2014-02-04 10:12:30 1563

原创 Leetcode全树类问题

Leetcode全树类问题。算法总的来说就是递归(Stack, DFS)和广度优先(Queue, BFS)两种。下面有关二叉树类linked list的题目,若不加特别说明...

2014-02-04 03:03:24 10987 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除