随笔分类 -  Algorithm

上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要:A cryptarithmetic puzzle is a mathematical game where the digits of some numbers are represented by letters. Each letter represents a unique digit. Fo 阅读全文
posted @ 2019-08-06 10:17 Review->Improve 阅读(1504) 评论(0) 推荐(0)
摘要:There are N courses, labelled from 1 to N. We are given relations[i] = [X, Y], representing a prerequisite relationship between course X and course Y: 阅读全文
posted @ 2019-08-01 10:15 Review->Improve 阅读(3671) 评论(0) 推荐(0)
摘要:Given a non-decreasing array of positive integers nums and an integer K, find out if this array can be divided into one or more disjoint increasing su 阅读全文
posted @ 2019-07-15 22:11 Review->Improve 阅读(829) 评论(0) 推荐(0)
摘要:Typically, an implementation of in-order traversal of a binary tree has O(h) space complexity, where h is the height of the tree. Write a program to c 阅读全文
posted @ 2019-07-10 22:40 Review->Improve 阅读(732) 评论(0) 推荐(0)
摘要:Given a sorted array of non-negative integers, find the smallest positive integer that is not the sum of a subset of the array. For example, for the i 阅读全文
posted @ 2019-07-10 11:43 Review->Improve 阅读(433) 评论(0) 推荐(0)
摘要:LeetCode 424. Longest Repeating Character Replacement Given a string that consists of only uppercase English letters, you can replace any letter in th 阅读全文
posted @ 2019-04-13 03:48 Review->Improve 阅读(413) 评论(0) 推荐(0)
摘要:Given a set of closed intervals, find the smallest set of numbers that covers all the intervals. If there are multiple smallest sets, return any of th 阅读全文
posted @ 2019-03-30 01:42 Review->Improve 阅读(780) 评论(0) 推荐(0)
摘要:Given a string which we can delete at most k, return whether you can make a palindrome. For example, given 'waterrfetawx' and a k of 2, you could dele 阅读全文
posted @ 2019-03-29 12:31 Review->Improve 阅读(293) 评论(0) 推荐(0)
摘要:Graph: n nodes, m edges Representation Adjacency Matrix: O(n^2) space, not efficient for sparse graph Adjacency List: O(n + m) space, efficient for sp 阅读全文
posted @ 2019-03-08 12:27 Review->Improve 阅读(618) 评论(0) 推荐(0)
摘要:There are N piles of stones arranged in a row. The i-th pile has stones[i] stones. A move consists of merging exactly K consecutive piles into one pil 阅读全文
posted @ 2019-03-04 07:49 Review->Improve 阅读(882) 评论(0) 推荐(0)
摘要:Given an array A of 0s and 1s, we may change up to K values from 0 to 1. Return the length of the longest (contiguous) subarray that contains only 1s. 阅读全文
posted @ 2019-03-04 00:33 Review->Improve 阅读(762) 评论(0) 推荐(0)
摘要:We are given that the string "abc" is valid. From any valid string V, we may split V into two pieces X and Y such that X + Y (X concatenated with Y) i 阅读全文
posted @ 2019-03-04 00:14 Review->Improve 阅读(722) 评论(0) 推荐(0)
摘要:Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Example 1: Example 2: 阅读全文
posted @ 2019-03-02 13:20 Review->Improve 阅读(124) 评论(0) 推荐(0)
摘要:Given an array of integers A, find the sum of min(B), where B ranges over every (contiguous) subarray of A. Since the answer may be large, return the 阅读全文
posted @ 2019-03-02 00:51 Review->Improve 阅读(1227) 评论(0) 推荐(0)
摘要:On a N x N grid of cells, each cell (x, y) with 0 <= x < N and 0 <= y < N has a lamp. Initially, some number of lamps are on. lamps[i] tells us the lo 阅读全文
posted @ 2019-02-26 12:38 Review->Improve 阅读(621) 评论(0) 推荐(0)
摘要:In an array A containing only 0s and 1s, a K-bit flip consists of choosing a (contiguous) subarray of length K and simultaneously changing every 0 in 阅读全文
posted @ 2019-02-19 07:13 Review->Improve 阅读(1515) 评论(0) 推荐(0)
摘要:Consider all the leaves of a binary tree. From left to right order, the values of those leaves form a leaf value sequence. For example, in the given t 阅读全文
posted @ 2019-02-13 22:57 Review->Improve 阅读(181) 评论(0) 推荐(0)
摘要:This problem was asked by Google. In a directed graph, each node is assigned an uppercase letter. We define a path's value as the number of most frequ 阅读全文
posted @ 2019-02-12 13:00 Review->Improve 阅读(3893) 评论(0) 推荐(0)
摘要:For a non-negative integer X, the array-form of X is an array of its digits in left to right order. For example, if X = 1231, then the array form is [ 阅读全文
posted @ 2019-02-11 07:07 Review->Improve 阅读(840) 评论(0) 推荐(0)
摘要:Given a binary tree, return the vertical order traversal of its nodes values. For each node at position (X, Y), its left and right children respective 阅读全文
posted @ 2019-02-10 10:20 Review->Improve 阅读(899) 评论(0) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 10 下一页