
搜索
文章平均质量分 73
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 230. Kth Smallest Element in a BST(二叉搜索树中的第K个元素)
原题网址:https://leetcode.com/problems/kth-smallest-element-in-a-bst/Given a binary search tree, write a function kthSmallest to find the kth smallest element in it.Note: You may assume k is原创 2016-04-05 11:16:32 · 1449 阅读 · 0 评论 -
LeetCode 285. Inorder Successor in BST
原题网址:https://leetcode.com/problems/inorder-successor-in-bst/Given a binary search tree and a node in it, find the in-order successor of that node in the BST.Note: If the given node has no in原创 2016-04-15 00:35:29 · 1241 阅读 · 0 评论 -
LeetCode 212. Word Search II(单词搜索)
原题网址:https://leetcode.com/problems/word-search-ii/Given a 2D board and a list of words from the dictionary, find all words in the board.Each word must be constructed from letters of sequenti原创 2016-05-05 03:14:10 · 2268 阅读 · 0 评论 -
LeetCode 81. Search in Rotated Sorted Array II(搜索旋转的数组)
原题网址:https://leetcode.com/problems/search-in-rotated-sorted-array-ii/Follow up for "Search in Rotated Sorted Array":What if duplicates are allowed?Would this affect the run-time complexity原创 2016-05-22 05:30:00 · 414 阅读 · 0 评论 -
LeetCode 74. Search a 2D Matrix(搜索矩阵)
原题网址:https://leetcode.com/problems/search-a-2d-matrix/Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each原创 2016-05-22 05:19:08 · 619 阅读 · 0 评论 -
LeetCode 79. Word Search(单词查找)
原题网址:https://leetcode.com/problems/word-search/Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where原创 2016-05-22 05:21:03 · 1195 阅读 · 0 评论 -
LeetCode 35. Search Insert Position(搜索插入点)
原题网址:https://leetcode.com/problems/search-insert-position/Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were原创 2016-05-20 10:37:23 · 380 阅读 · 0 评论 -
LeetCode 34. Search for a Range(搜索范围)
原题网址:https://leetcode.com/problems/search-for-a-range/Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must原创 2016-05-20 10:36:48 · 499 阅读 · 0 评论 -
LeetCode 211. Add and Search Word - Data structure design(单词检索)
原题网址:https://leetcode.com/problems/add-and-search-word-data-structure-design/Design a data structure that supports the following two operations:void addWord(word)bool search(word)search(原创 2016-05-05 01:43:09 · 1277 阅读 · 0 评论 -
LeetCode 272. Closest Binary Search Tree Value II(二叉搜索树查找)
原题网址:https://leetcode.com/problems/closest-binary-search-tree-value-ii/Given a non-empty binary search tree and a target value, find k values in the BST that are closest to the target.Note:原创 2016-04-13 06:15:51 · 2063 阅读 · 0 评论 -
LeetCode 270. Closest Binary Search Tree Value(二叉搜索树最接近值查找)
原题网址:https://leetcode.com/problems/closest-binary-search-tree-value/Given a non-empty binary search tree and a target value, find the value in the BST that is closest to the target.Note:原创 2016-04-13 02:53:19 · 3052 阅读 · 0 评论 -
LeetCode 278. First Bad Version(首个坏版本)
原题网址:https://leetcode.com/problems/first-bad-version/You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the原创 2016-04-14 01:25:35 · 317 阅读 · 0 评论 -
LeetCode 240. Search a 2D Matrix II (矩阵内搜索)
原题网址:https://leetcode.com/problems/search-a-2d-matrix-ii/Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in e原创 2016-04-07 00:18:58 · 526 阅读 · 0 评论 -
LeetCode 275. H-Index II(文献)
原题网址:https://leetcode.com/problems/h-index-ii/Follow up for H-Index: What if the citations array is sorted in ascending order? Could you optimize your algorithm?Hint:Expected runtime c原创 2016-04-13 12:14:37 · 555 阅读 · 0 评论