
leetcode
文章平均质量分 94
记录算法入门系列
bohu83
微信:bohu83
展开
-
数据结构串讲
本篇属于数据结构串讲内容。讲真,一说数学我就头大,一看LeetCode就头疼。一 hash242. Valid AnagramGiven two strings s and t, write a function to determine if t is an anagram of s.Example 1:Input: s = "anagram", t = "nagaram"Output: trueExample 2:Input: s = "rat", t = "car"O.原创 2021-02-21 20:48:39 · 245 阅读 · 0 评论 -
动态规划习题review
老师在讲完语言模型之前,貌似是助教插入了一堂习题课044-047,专门讲了下动态规划。关于算法我自己是有体会的,不会或者觉得回了过两又忘了。动态规划:很重要的是找出初始数据以及状态转移。补充下题目:53. Maximum SubarrayGiven an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return it原创 2021-01-30 23:24:53 · 184 阅读 · 0 评论 -
面试题 leetcode 445. Add Two Numbers II
一题目You are given twonon-emptylinked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.You may assume the two numbers..原创 2020-07-08 14:21:11 · 210 阅读 · 0 评论 -
极客时间-算法训练营 3.2
一 序本文属于极客时间-算法训练营 学习笔记。对应章节:极客时间-算法训练营 学习笔记 3递归的实现、特性以及思维要点二 70Climbing StairsYou are climbing a stair case. It takesnsteps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?N...原创 2020-07-04 16:56:05 · 7475 阅读 · 0 评论 -
极客时间-算法训练营 学习笔记 2.2 实战题目解析:二叉树的中序遍历
一 序 本文属于极客时间-算法训练营 学习笔记。上节课学习了树、二叉树、二叉搜索树的实现本节课学习做题二二叉树的中序遍历一 题目:94.Binary Tree Inorder TraversalMedium3067130Add to ListShareGiven a binary tree, return theinordertraversal of its nodes' values.Example:Input: [1,null,2,3] 1...原创 2020-07-04 00:35:25 · 535 阅读 · 0 评论 -
LeetCode 144. Binary Tree Preorder Traversal
一 题目Given a binary tree, return thepreordertraversal of its nodes' values.Example:Input:[1,null,2,3] 1 \ 2 / 3Output:[1,2,3]Follow up:Recursive solution is trivial, could you do it iteratively?二 分析题目都说了,递归是容易的,能否用迭代实...原创 2020-07-02 13:58:37 · 173 阅读 · 0 评论 -
leetcode 589. N-ary Tree Preorder Traversal
一题目Given an n-ary tree, return thepreordertraversal of its nodes' values.Nary-Tree input serializationis represented in their level order traversal, each group of children is separated by the null value (See examples).Follow up:Recursive solu...原创 2020-07-02 13:21:56 · 243 阅读 · 0 评论 -
LeetCode 169. Majority Element(面试题)
一 题目Given an array of sizen, find the majority element. The majority element is the element that appearsmore than⌊ n/2 ⌋times.You may assume that the array is non-empty and the majority elemen...原创 2019-10-23 21:15:02 · 261 阅读 · 0 评论 -
leetcode 347. Top K Frequent Elements
一 题目Given a non-empty array of integers, return thekmost frequent elements.Example 1:Input: nums = [1,1,1,2,2,3], k = 2Output: [1,2]Example 2:Input: nums = [1], k = 1Output: [1]Note...原创 2019-10-19 14:51:55 · 204 阅读 · 0 评论 -
二叉树的左、右叶子节点之和
一 基础从百科摘个定义:在计算机科学中,二叉树是每个结点最多有两个子树的树结构。通常子树被称作“左子树”(left subtree)和“右子树”(right subtree)。二叉树常被用于实现二叉查找树和二叉堆。一棵深度为k,且有2^k-1个结点的二叉树,称为满二叉树。这种树的特点是每一层上的结点数都是最大结点数。而在一棵二叉树中,除最后一层外,若其余层都是满的,并且或者最后一层是...原创 2019-10-19 09:54:32 · 2209 阅读 · 0 评论 -
LeetCode 82. Remove Duplicates from Sorted List II
一 问题Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.Example 1:Input: 1->2->3->3->4->4->5Output:...原创 2019-10-18 22:26:01 · 189 阅读 · 0 评论 -
leetcode 83. Remove Duplicates from Sorted List
一 题目Given a sorted linked list, delete all duplicates such that each element appear onlyonce.Example 1:Input: 1->1->2Output: 1->2Example 2:Input: 1->1->2->3->3Outp...原创 2019-10-18 08:52:00 · 181 阅读 · 0 评论 -
leetcode 160. Intersection of Two Linked Lists
一 题目Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists:begin to intersect at node c1.Example 1:Inpu...原创 2019-10-17 23:13:44 · 165 阅读 · 0 评论 -
leetcode 141 Linked List Cycle
一 问题Given a linked list, determine if it has a cycle in it.To represent a cycle in the given linked list, we use an integerposwhich represents the position (0-indexed)in the linked list where t...原创 2019-10-17 10:46:44 · 187 阅读 · 0 评论 -
leetcode 72. Edit Distance
一 题目 Given two wordsword1andword2, find the minimum number of operations required to convertword1toword2.You have the following 3 operations permitted on a word:Insert a character Delet...原创 2019-10-14 14:15:30 · 244 阅读 · 0 评论 -
LeetCode 71. Simplify Path
一 题目Given anabsolute pathfor a file (Unix-style), simplify it. Or in other words, convert it to thecanonical path.In a UNIX-style file system, a period.refers to the current directory. Furthe...原创 2019-10-13 10:55:49 · 192 阅读 · 0 评论 -
LeetCode 70. Climbing Stairs
一 题目You are climbing a stair case. It takesnsteps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?Note:Givennwill be a po...原创 2019-10-13 00:32:03 · 420 阅读 · 0 评论 -
LeetCode 69. Sqrt(x)
一 题目Implementint sqrt(int x).Compute and return the square root ofx, wherexis guaranteed to be a non-negative integer.Since the return typeis an integer, the decimal digits are truncated an...原创 2019-10-12 10:57:05 · 145 阅读 · 0 评论 -
leetcode 68 Text Justification
一 题目Given an array of words and a widthmaxWidth, format the text such that each line has exactlymaxWidthcharacters and is fully (left and right) justified.You should pack your words in a greed...原创 2019-10-12 00:25:37 · 240 阅读 · 0 评论 -
leetcode11:container-with-most-water
一 题目Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of lineiis at (i,ai) and (i, 0). Fi...原创 2019-08-14 14:54:27 · 252 阅读 · 0 评论 -
leetcode3:longest-substring-without-repeating-characters
3.Longest Substring Without Repeating CharactersGiven a string, find the length of thelongest substringwithout repeating characters.Example 1:Input: "abcabcbb"Output: 3 Explanation: The an...原创 2019-08-13 00:34:30 · 260 阅读 · 0 评论 -
Longest string made up of only vowels
You are given with a string . Your task is to remove atmost two substrings of any length from the given string such that the remaining string contains vowels('a','e','i','o','u') only. Your aim is the...原创 2019-08-11 15:49:38 · 659 阅读 · 0 评论 -
767. Reorganize String
Given a stringS, check if the letters can be rearranged so that two characters that are adjacent to each other are not the same.If possible, output any possible result. If not possible, return the...原创 2019-08-10 00:16:55 · 303 阅读 · 0 评论 -
Min Cost to Connect Ropes
一 题目Givennropes of different lengths, we need to connect these ropes into one rope. We can connect only 2 ropes at a time. The cost required to connect 2 ropes is equal to sum of their lengths. Th...原创 2019-08-09 00:48:15 · 479 阅读 · 0 评论 -
Roll Dice
A six-sided die is a small cube with a different number of pips on each face (side), ranging from 1 to 6.On any two opposite side of the cube, the number of pips adds up to 7; that is, there are thre...原创 2019-08-08 23:18:19 · 3554 阅读 · 0 评论 -
1135. Connecting Cities With Minimum Cost
这个题目是leetcode的premuim 才能看的,网上看到别人贴出来了,学习一下。一 题目原文链接:https://blog.youkuaiyun.com/Csdn_jey/article/details/97611628There are N cities numbered from 1 to N.You are given connections, where each connec...原创 2019-08-08 13:13:57 · 738 阅读 · 0 评论 -
763. Partition Labels
一 题目Medium 难度A stringSof lowercase letters is given. We want to partition this string into as many parts as possible so that each letter appears in at most one part, and return a list of intege...原创 2019-08-07 14:31:07 · 170 阅读 · 0 评论 -
937. Reorder Log Files
You have an array oflogs. Each log is a space delimited string of words.For each log, the first word in each log is an alphanumericidentifier. Then, either:Each word after the identifier will ...原创 2019-08-06 23:11:35 · 204 阅读 · 0 评论 -
973. K Closest Points to Origin 最接近原点的K个点
又到了经典top K问题了。We have a list ofpointson the plane. Find theKclosest points to the origin(0, 0).(Here, the distance between two points on a plane is the Euclidean distance.)You may return t...原创 2019-08-05 00:02:30 · 410 阅读 · 0 评论 -
957. Prison Cells After N Days
一 原题There are 8 prison cells in a row, and each cell is either occupied or vacant.Each day, whether the cell is occupied or vacant changes according to the following rules:If a cell has two adja...原创 2019-08-04 10:35:09 · 378 阅读 · 0 评论 -
leetcode:819Most Common Word
easy 模式一题目819Most Common WordGiven a paragraphand 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 least one word that...原创 2019-08-03 19:15:32 · 241 阅读 · 0 评论 -
14. Longest Common Prefix
Longest Common PrefixEASY模式Write a function to find the longest common prefix string amongst an array of strings.If there is no common prefix, return an empty string"".Example 1:Input: ["...原创 2019-08-03 01:10:34 · 191 阅读 · 0 评论 -
leetcode28.strStr
1strStrImplementstrStr().Return the index of the first occurrence of needle in haystack, or-1if needle is not part of haystack.Example 1:Input: haystack = "hello", needle = "ll"Output: 2...原创 2019-08-02 00:06:44 · 142 阅读 · 0 评论 -
算法入门系列:singleNumber
本文属于算法leetcode系列。singleNumber1:easy 模式。Given anon-emptyarray of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime c...原创 2019-07-31 23:05:24 · 721 阅读 · 0 评论 -
LeetCode 13. Roman to Integer
一 题目Roman numerals are represented by seven different symbols:I,V,X,L,C,DandM.Symbol ValueI 1V 5X 10L 50C 100D ...原创 2019-09-01 22:24:45 · 129 阅读 · 0 评论 -
leetcode 15. 3Sum
一 题目 Given an arraynumsofnintegers, are there elementsa,b,cinnumssuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:The solution set must...原创 2019-09-02 11:42:29 · 272 阅读 · 0 评论 -
215. Kth Largest Element in an Array
一 题目Find thekth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.Example 1:Input: [3,2,1,5,6,4] and k = 2Output:...原创 2019-08-15 00:11:46 · 242 阅读 · 0 评论 -
LeetCode209. Minimum Size Subarray Sum
一 题目Given an array ofnpositive integers and a positive integers, find the minimal length of acontiguoussubarray of which the sum ≥s. If there isn't one, return 0 instead.Example:Input: s...原创 2019-08-15 20:15:48 · 219 阅读 · 0 评论 -
LeetCode76. Minimum Window Substring
一 题目Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).Example:Input: S = "ADOBECODEBANC", T = "ABC"Output: "BANC"No...原创 2019-08-16 00:42:02 · 155 阅读 · 0 评论 -
leetcode 5. Longest Palindromic Substring
一 题目Given a strings, find the longest palindromic substring ins. You may assume that the maximum length ofsis 1000.Example 1:Input: "babad"Output: "bab"Note: "aba" is also a valid answer....原创 2019-08-20 20:38:29 · 367 阅读 · 0 评论