随笔分类 -  LeetCode

上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 61 下一页
摘要:Given an array of unique integers, each integer is strictly greater than 1. We make a binary tree using these integers and each number may be used for 阅读全文
posted @ 2019-01-05 00:00 Grandyang 阅读(2109) 评论(0) 推荐(0) 编辑
摘要:On a table are N cards, with a positive integer printed on the front and back of each card (possibly different). We flip any number of cards, and afte 阅读全文
posted @ 2018-12-23 07:49 Grandyang 阅读(2258) 评论(0) 推荐(0) 编辑
摘要:Given a string S and a character C, return an array of integers representing the shortest distance from the character C in the string. Example 1: Inpu 阅读全文
posted @ 2018-12-13 11:59 Grandyang 阅读(2536) 评论(0) 推荐(0) 编辑
摘要:Given a list of words, we may encode it by writing a reference string S and a list of indexes A. For example, if the list of words is ["time", "me", " 阅读全文
posted @ 2018-12-08 23:48 Grandyang 阅读(3071) 评论(1) 推荐(0) 编辑
摘要:Given a paragraph and a list of banned words, return the most frequent word that is not in the list of banned words. It is guaranteed there is at leas 阅读全文
posted @ 2018-12-04 00:57 Grandyang 阅读(3565) 评论(1) 推荐(0) 编辑
摘要:Given a blacklist B containing unique integers from [0, N), write a function to return a uniform random integer from [0, N) which is NOT in B. Optimiz 阅读全文
posted @ 2018-11-27 23:23 Grandyang 阅读(3315) 评论(0) 推荐(1) 编辑
摘要:Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Example 1: Input: "Hello" Output: "hello" 阅读全文
posted @ 2018-11-25 23:09 Grandyang 阅读(1642) 评论(0) 推荐(0) 编辑
摘要:Design your implementation of the linked list. You can choose to use the singly linked list or the doubly linked list. A node in a singly linked list 阅读全文
posted @ 2018-11-23 09:03 Grandyang 阅读(5683) 评论(3) 推荐(0) 编辑
摘要:Given a robot cleaner in a room modeled as a grid. Each cell in the grid can be empty or blocked. The robot cleaner with 4 given APIs can move forward 阅读全文
posted @ 2018-11-20 12:39 Grandyang 阅读(14698) 评论(8) 推荐(2) 编辑
摘要:Given a node from a Circular Linked List which is sorted in ascending order, write a function to insert a value insertVal into the list such that it r 阅读全文
posted @ 2018-11-19 01:15 Grandyang 阅读(6194) 评论(0) 推荐(0) 编辑
摘要:Design a HashMap without using any built-in hash table libraries. Implement the MyHashMap class: MyHashMap() initializes the object with an empty map. 阅读全文
posted @ 2018-11-17 05:43 Grandyang 阅读(7822) 评论(2) 推荐(0) 编辑
摘要:Design a HashSet without using any built-in hash table libraries. To be specific, your design should include these functions: add(value): Insert a val 阅读全文
posted @ 2018-11-15 23:19 Grandyang 阅读(5201) 评论(0) 推荐(0) 编辑
摘要:Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or 阅读全文
posted @ 2018-11-12 11:21 Grandyang 阅读(6397) 评论(0) 推荐(0) 编辑
摘要:Design an algorithm to encode an N-ary tree into a binary tree and decode the binary tree to get the original N-ary tree. An N-ary tree is a rooted tr 阅读全文
posted @ 2018-11-12 11:08 Grandyang 阅读(3757) 评论(4) 推荐(0) 编辑
摘要:Design a class to find the kth largest element in a stream. Note that it is the kth largest element in the sorted order, not the kth distinct element. 阅读全文
posted @ 2018-11-11 09:19 Grandyang 阅读(6108) 评论(0) 推荐(0) 编辑
摘要:Given a sorted (in ascending order) integer array nums of n elements and a target value, write a function to search target in nums. If target exists, 阅读全文
posted @ 2018-11-10 00:50 Grandyang 阅读(3542) 评论(0) 推荐(0) 编辑
摘要:Given an integer array sorted in ascending order, write a function to search target in nums. If target exists, then return its index, otherwise return 阅读全文
posted @ 2018-11-09 23:58 Grandyang 阅读(4641) 评论(1) 推荐(0) 编辑
摘要:Given the root node of a binary search tree (BST) and a value to be inserted into the tree, insert the value into the BST. Return the root node of the 阅读全文
posted @ 2018-11-06 12:09 Grandyang 阅读(3677) 评论(1) 推荐(0) 编辑
摘要:Given the root node of a binary search tree (BST) and a value. You need to find the node in the BST that the node's value equals the given value. Retu 阅读全文
posted @ 2018-11-06 00:00 Grandyang 阅读(3110) 评论(0) 推荐(0) 编辑
摘要:Design your implementation of the circular double-ended queue (deque). Your implementation should support following operations: MyCircularDeque(k): Co 阅读全文
posted @ 2018-11-03 04:13 Grandyang 阅读(2787) 评论(0) 推荐(0) 编辑

上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 61 下一页
Fork me on GitHub