
LeetCode OJ
LeetCode OJ
匿名侠士
非典型的搬砖工
展开
-
Reverse Linked List II
Reverse Linked List II Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->2->5->NULL.No原创 2015-04-22 16:49:30 · 327 阅读 · 0 评论 -
Permutation Sequence
Permutation Sequence The set [1,2,3,…,n] contains a total of n! unique permutations.By listing and labeling all of the permutations in order,We get the following sequence (ie, for n =原创 2015-04-16 17:42:04 · 411 阅读 · 0 评论 -
Simplify Path
Simplify Path Given an absolute path for a file (Unix-style), simplify it.For example,path = "/home/", => "/home"path = "/a/./b/../../c/", => "/c"class Solution {public: //遇到/.就原创 2015-04-16 17:45:43 · 335 阅读 · 0 评论 -
Set Matrix Zeroes
Set Matrix Zeroes Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.click to show follow up.class Solution {public: //O(1)的存储空间,利用矩阵本身的存储空原创 2015-04-16 17:48:14 · 533 阅读 · 0 评论 -
Regular Expression Matching 正则表达式匹配和递归
Regular Expression Matching Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The mat原创 2015-06-16 18:17:29 · 794 阅读 · 0 评论 -
Merge k Sorted Lists 合并多个链表 归并 vector/copy
Merge k Sorted Lists Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity./** * Definition for singly-linked list. * struct ListNode { *原创 2015-06-17 14:41:03 · 537 阅读 · 0 评论 -
LeetCode OJ Longest Substring Without Repeating Characters 不重复的最长字串 滑动窗口
Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating let原创 2015-03-24 13:04:04 · 515 阅读 · 0 评论 -
Roman to Integer 罗马数字转化为整数
Roman to Integer Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.class Solution {public: int romanToInt(string s) {原创 2015-03-26 12:58:04 · 490 阅读 · 0 评论 -
Longest Common Prefix 字符的最长公共前缀
Longest Common Prefix Write a function to find the longest common prefix string amongst an array of strings.class Solution {public: string longestCommonPrefix(vector &strs) {原创 2015-03-26 12:59:28 · 554 阅读 · 0 评论 -
Reverse Nodes in k-Group 指针操作 每k个翻转链表
Reverse Nodes in k-Group Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then left-out nodes原创 2015-06-24 21:23:18 · 540 阅读 · 0 评论 -
String to Integer (atoi) 字符串转整数
String to Integer (atoi) Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask your原创 2015-03-26 12:55:16 · 434 阅读 · 0 评论 -
Palindrome Number 判断整数是否回文
Palindrome Number Determine whether an integer is a palindrome. Do this without extra space.class Solution {public: bool isPalindrome(int x) { if(x<0) return false原创 2015-03-26 12:57:03 · 791 阅读 · 0 评论 -
Valid Parentheses 合法的匹配 栈实现
Valid Parentheses Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the correct order, "(原创 2015-03-26 13:04:38 · 484 阅读 · 0 评论 -
Merge Two Sorted Lists 合并链表
Merge Two Sorted Lists 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./** * Definition for原创 2015-03-28 13:23:22 · 439 阅读 · 0 评论 -
Implement strStr() strncmp实现strstr()
Implement strStr()Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Update (2014-11-02):The signature of the原创 2015-03-28 13:28:15 · 556 阅读 · 0 评论 -
Substring with Concatenation of All Words 字符串操作 匹配的字串数
Substring with Concatenation of All Words You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a c原创 2015-06-25 14:13:54 · 418 阅读 · 0 评论 -
LeetCode OJ ZigZag Conversion ”之“字符串变化 string操作
ZigZag Conversion The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibilit原创 2015-03-24 13:05:30 · 450 阅读 · 0 评论 -
Reverse Integer 整数逆转
Reverse Integer Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321class Solution {public: int reverse(int x) { if(x==0||x>21474836原创 2015-03-26 12:54:28 · 483 阅读 · 0 评论 -
Remove Nth Node From End of List 删除链表倒数第N个节点
Remove Nth Node From End of List 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. After原创 2015-03-26 13:03:15 · 446 阅读 · 0 评论 -
Remove Duplicates from Sorted Array 去除重复的
Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for原创 2015-03-28 13:24:16 · 509 阅读 · 0 评论 -
Remove Element 数组删除指定的元素
Remove Element Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't matter what you leave be原创 2015-03-28 13:26:42 · 779 阅读 · 0 评论 -
Longest Valid Parentheses 最长的连续匹配数
Longest Valid Parentheses Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.For "(()", the longest valid原创 2015-06-26 14:39:30 · 541 阅读 · 0 评论 -
Search in Rotated Sorted Array 二分查找循环移位的有序数组
Search in Rotated Sorted Array Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).You are given a target value t原创 2015-06-28 18:10:48 · 755 阅读 · 0 评论 -
First Missing Positive 寻找第一个缺失的整数,线性时间常量空间
First Missing Positive Given an unsorted integer array, find the first missing positive integer.For example,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your algorithm should run i原创 2015-06-30 11:14:48 · 529 阅读 · 0 评论 -
Sudoku Solver 数独填充 递归判断回溯
Sudoku Solver Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that there will be only one unique solutio原创 2015-06-29 14:05:17 · 634 阅读 · 0 评论 -
Jump Game II 到达终点的最小步数 模拟
Jump Game II Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximum jump length at that pos原创 2015-07-07 21:26:19 · 672 阅读 · 0 评论 -
Permutations II 字符全排列 去除重复的
Permutations II Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2] have the following unique permutations:[1,1,2],原创 2015-07-08 14:05:20 · 530 阅读 · 0 评论 -
N-Queens N皇后放置问题 回溯法
N-Queens The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.Given an integer n, return all distinct solutions to the n-原创 2015-07-09 19:30:17 · 864 阅读 · 0 评论 -
Trapping Rain Water 左右指针寻找最大容量的水
Trapping Rain Water Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.For example, Giv原创 2015-07-02 15:27:24 · 655 阅读 · 0 评论 -
Median of Two Sorted Arrays 有序数组A和B合并之后第k小的数
Median of Two Sorted Arrays There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(原创 2015-06-15 14:25:58 · 511 阅读 · 0 评论 -
LeetCode OJ Add Two Numbers 链表求和
Add Two Numbers Total Accepted: 49110 Total Submissions: 219893You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of thei原创 2015-03-23 16:31:17 · 456 阅读 · 0 评论 -
Wildcard Matching 字符串含?,*匹配
Wildcard Matching Implement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of characters (including the empty sequence).原创 2015-07-06 19:57:25 · 599 阅读 · 0 评论 -
Merge Intervals 多区间合并
Merge Intervals Given a collection of intervals, merge all overlapping intervals.For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18].Hide Tags Array Sort原创 2015-07-14 14:36:49 · 512 阅读 · 0 评论 -
N-Queens II 回溯法求八皇后
N-Queens II Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.Hide Tags BacktrackingHide Similar Prob原创 2015-07-13 19:09:20 · 493 阅读 · 0 评论 -
Insert Interval 插入区间到多个区间
Insert Interval Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially sorted according to原创 2015-07-16 16:17:38 · 683 阅读 · 0 评论 -
Ugly Number II 寻找第N个丑数
Ugly Number II Write a program to find the n-th ugly number.Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 is t原创 2015-08-25 14:25:05 · 507 阅读 · 0 评论 -
Ugly Number 寻找丑数 简单题
Ugly Number Write a program to check whether a given number is an ugly number.Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 6, 8 are ugly while原创 2015-08-25 14:23:36 · 513 阅读 · 0 评论 -
Plus One 数组加1,vector处理
Plus One Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at the head of the list.H原创 2015-07-17 18:52:30 · 636 阅读 · 0 评论 -
Single Number III 两个不同的数出现一次,其余两次,异或
Single Number III Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only onc原创 2015-08-26 15:44:04 · 475 阅读 · 0 评论 -
Missing Number 第一个缺失的数
Missing Number Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array.For example,Given nums = [0, 1, 3] return 2.Note:原创 2015-08-26 15:44:51 · 521 阅读 · 0 评论