随笔分类 - [LeetCode]
摘要:The problem:Convert Sorted List to Binary Search TreeLink:https://oj.leetcode.com/problems/convert-sorted-list-to-binary-search-tree/My analysis:The i...
阅读全文
摘要:The problem:Given an array where elements are sorted in ascending order, convert it to a height balanced BST.My analysis:The recursion is the best way...
阅读全文
摘要:The problem: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...
阅读全文
摘要:The problem:Sort a linked list inO(nlogn) time using constant space complexity.My analysis:The is problem could be elegantly solved by using merge.The...
阅读全文
摘要:The problem:Sort a linked list inO(nlogn) time using constant space complexity.My analysis:The idea behind this problem is easy : merge sort !But we s...
阅读全文
摘要:The problem:Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must b...
阅读全文
摘要:The problem:Follow up for "Search in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity? How and why?Write a...
阅读全文
摘要:Problem:Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might become4 5 6 7 0 1 2).You are given a target...
阅读全文
摘要:The problem:Implementint sqrt(int x).Compute and return the square root ofx.My analysis:The problem could be solved amazingly by using binary search.W...
阅读全文
摘要:The problem:Given amxnmatrix, if an element is 0, set its entire row and column to 0. Do it in place.My analysis:This is a very typical quesition in m...
阅读全文
摘要:The problem: (The code of dynamic programming is very concise and elegant. You must learn it!)Given a stringS, find the longest palindromic substring ...
阅读全文
摘要:The problem: (This prolem include many programming skills in using recursion!!)Givennpairs of parentheses, write a function to generate all combinatio...
阅读全文
摘要:The quesiton:Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in...
阅读全文
摘要:The question:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices ...
阅读全文
摘要:The Problem:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices o...
阅读全文
摘要:The questions:Determine whether an integer is a palindrome. Do this without extra space.Analysis:To determine whether an integer is a palindrome, we c...
阅读全文
摘要:Reverse a integer is a very common task we need to understand for being a good programmer. It is very easy at some aspects, however, it also needs a p...
阅读全文

浙公网安备 33010602011771号