从链接抄来的.

Array

  • Two Sum - https://leetcode.com/problems/two-sum/
  • Best Time to Buy and Sell Stock(121) - https://leetcode.com/problems/best-time-to-buy-and-sell-stock/
  • Contains Duplicate(217,存在重复元素) - https://leetcode.com/problems/contains-duplicate/
  • Product of Array Except Self - https://leetcode.com/problems/product-of-array-except-self/
  • Maximum Subarray - https://leetcode.com/problems/maximum-subarray/
  • Maximum Product Subarray - https://leetcode.com/problems/maximum-product-subarray/
  • Find Minimum in Rotated Sorted Array - https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/
  • Search in Rotated Sorted Array - https://leetcode.com/problems/search-in-rotated-sorted-array/
  • 3Sum - https://leetcode.com/problems/3sum/
  • Container With Most Water - https://leetcode.com/problems/container-with-most-water/

Binary

  • Sum of Two Integers - https://leetcode.com/problems/sum-of-two-integers/
  • Number of 1 Bits - https://leetcode.com/problems/number-of-1-bits/
  • Counting Bits - https://leetcode.com/problems/counting-bits/
  • Missing Number - https://leetcode.com/problems/missing-number/
  • Reverse Bits - https://leetcode.com/problems/reverse-bits/

Dynamic Programming

  • Climbing Stairs - https://leetcode.com/problems/climbing-stairs/
  • Coin Change - https://leetcode.com/problems/coin-change/
  • Longest Increasing Subsequence - https://leetcode.com/problems/longest-increasing-subsequence/
  • Longest Common Subsequence -
  • Word Break Problem - https://leetcode.com/problems/word-break/
  • Combination Sum - https://leetcode.com/problems/combination-sum-iv/
  • House Robber - https://leetcode.com/problems/house-robber/
  • House Robber II - https://leetcode.com/problems/house-robber-ii/
  • Decode Ways - https://leetcode.com/problems/decode-ways/
  • Unique Paths - https://leetcode.com/problems/unique-paths/
  • Jump Game - https://leetcode.com/problems/jump-game/

Graph

  • Clone Graph - https://leetcode.com/problems/clone-graph/
  • Course Schedule - https://leetcode.com/problems/course-schedule/
  • Pacific Atlantic Water Flow - https://leetcode.com/problems/pacific-atlantic-water-flow/
  • Number of Islands - https://leetcode.com/problems/number-of-islands/
  • Longest Consecutive Sequence - https://leetcode.com/problems/longest-consecutive-sequence/
  • Alien Dictionary (Leetcode Premium) - https://leetcode.com/problems/alien-dictionary/
  • Graph Valid Tree (Leetcode Premium) - https://leetcode.com/problems/graph-valid-tree/
  • Number of Connected Components in an Undirected Graph (Leetcode Premium) - https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/

Interval

  • Insert Interval - https://leetcode.com/problems/insert-interval/
  • Merge Intervals - https://leetcode.com/problems/merge-intervals/
  • Non-overlapping Intervals - https://leetcode.com/problems/non-overlapping-intervals/
  • Meeting Rooms (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms/
  • Meeting Rooms II (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms-ii/

Linked List

  • Reverse a Linked List - https://leetcode.com/problems/reverse-linked-list/
  • Detect Cycle in a Linked List - https://leetcode.com/problems/linked-list-cycle/
  • Merge Two Sorted Lists - https://leetcode.com/problems/merge-two-sorted-lists/
  • Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/
  • Remove Nth Node From End Of List - https://leetcode.com/problems/remove-nth-node-from-end-of-list/
  • Reorder List - https://leetcode.com/problems/reorder-list/

Matrix

  • Set Matrix Zeroes - https://leetcode.com/problems/set-matrix-zeroes/
  • Spiral Matrix - https://leetcode.com/problems/spiral-matrix/
  • Rotate Image - https://leetcode.com/problems/rotate-image/
  • Word Search - https://leetcode.com/problems/word-search/

String

  • Longest Substring Without Repeating Characters - https://leetcode.com/problems/longest-substring-without-repeating-characters/
  • Longest Repeating Character Replacement - https://leetcode.com/problems/longest-repeating-character-replacement/
  • Minimum Window Substring - https://leetcode.com/problems/minimum-window-substring/
  • Valid Anagram - https://leetcode.com/problems/valid-anagram/
  • Group Anagrams - https://leetcode.com/problems/group-anagrams/
  • Valid Parentheses - https://leetcode.com/problems/valid-parentheses/
  • Valid Palindrome - https://leetcode.com/problems/valid-palindrome/
  • Longest Palindromic Substring - https://leetcode.com/problems/longest-palindromic-substring/
  • Palindromic Substrings - https://leetcode.com/problems/palindromic-substrings/
  • Encode and Decode Strings (Leetcode Premium) - https://leetcode.com/problems/encode-and-decode-strings/

Tree

  • Maximum Depth of Binary Tree - https://leetcode.com/problems/maximum-depth-of-binary-tree/
  • Same Tree - https://leetcode.com/problems/same-tree/
  • Invert/Flip Binary Tree - https://leetcode.com/problems/invert-binary-tree/
  • Binary Tree Maximum Path Sum - https://leetcode.com/problems/binary-tree-maximum-path-sum/
  • Binary Tree Level Order Traversal - https://leetcode.com/problems/binary-tree-level-order-traversal/
  • Serialize and Deserialize Binary Tree - https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
  • Subtree of Another Tree - https://leetcode.com/problems/subtree-of-another-tree/
  • Construct Binary Tree from Preorder and Inorder Traversal - https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
  • Validate Binary Search Tree - https://leetcode.com/problems/validate-binary-search-tree/
  • Kth Smallest Element in a BST - https://leetcode.com/problems/kth-smallest-element-in-a-bst/
  • Lowest Common Ancestor of BST - https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/
  • Implement Trie (Prefix Tree) - https://leetcode.com/problems/implement-trie-prefix-tree/
  • Add and Search Word - https://leetcode.com/problems/add-and-search-word-data-structure-design/
  • Word Search II - https://leetcode.com/problems/word-search-ii/

Heap

  • Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/
  • Top K Frequent Elements - https://leetcode.com/problems/top-k-frequent-elements/
  • Find Median from Data Stream - https://leetcode.com/problems/find-median-from-data-stream/

leetcode blind 75相关推荐

  1. LeetCode 71~75

    前言 本文隶属于专栏<LeetCode 刷题汇总>,该专栏为笔者原创,引用请注明来源,不足和错误之处请在评论区帮忙指出,谢谢! 本专栏目录结构请见LeetCode 刷题汇总 正文 幕布 幕 ...

  2. 【leetcode】75.颜色分类(多种解法,超详细图文解析)

    75. 颜色分类 难度中等 给定一个包含红色.白色和蓝色,一共 n 个元素的数组,**原地**对它们进行排序,使得相同颜色的元素相邻,并按照红色.白色.蓝色顺序排列. 此题中,我们使用整数 0. 1 ...

  3. LeetCode+ 71 - 75

    简化路径 算法标签:栈.字符串 给我们一个路径,要求把文件路径化简,给定的路径一定是合法的 Linux 路径,一个合法的 Linux 路径一般从 / 开始,/ 表示根目录,有很多的子目录 home.y ...

  4. 【leetcode】75. Sort Colors

    题目如下: 解题思路:我的解题思路是遍历数组,遇到0删除该元素并插入到数组头部,遇到1则不处理,遇到2删除该元素并插入到数组尾部. 代码如下: class Solution(object):def s ...

  5. [Leetcode][第75题][JAVA][颜色分类][双(三)指针][计数排序]

    [问题描述][中等] [解答思路] 1. 三指针 时间复杂度:O(N) 空间复杂度:O(1) class Solution {public void sortColors(int[] nums) {i ...

  6. 数据结构与算法题目及C++解答

    前言 题目主要按照类型进行整理,包括leetcode,nowcoder等网站,对于可以使用多种方法的题目,不重复列举.推荐书籍<数据结构与算法分析--C++语言描述>第四版. 本文中所有源 ...

  7. 01-JAVA基础—>赏金任务—>三色旗问题

    记录一下三色旗问题 对应LeetCode的 75 题 友情链接1 友情链接2 友情链接3 背景:三色旗的问题最早由E.W.Dijkstra所提出,一条绳子上有红.白.蓝三种颜色的旗子,旗子颜色并没有顺 ...

  8. Partition算法详解

    partition算法有着非常重要的应用,这个算法的思想虽然简单,但具体实现的细节却比较多,今天我重点复习了这个算法,本文记录我对这个算法的理解. 文章目录 Partition算法解析 二分Parti ...

  9. 《LeetCode力扣练习》第75题 颜色分类 Java

    <LeetCode力扣练习>第75题 颜色分类 Java 一.资源 题目: 给定一个包含红色.白色和蓝色.共 n 个元素的数组 nums ,原地对它们进行排序,使得相同颜色的元素相邻,并按 ...

  10. LeetCode 75. Sort Colors (python一次遍历,模拟三路快排)

    LeetCode 75. Sort Colors (python一次遍历,模拟三路快排) 题目分析: 本题需要实现数字只包含0,1,2的排序,并且要求一次遍历. 由于只用把数字隔离开,很容易想到快排的 ...

最新文章

  1. shell script
  2. Xargs用法详解(原创)
  3. 加载tensorflow模型后只运行变量名实现预测(sess.run)
  4. 忠于职守 —— sysmon 线程到底做了什么?(九)
  5. sql 除以_刷完这些SQL练习题,简单查询就熟能生巧了
  6. kindeditor图片上传
  7. less入门及基础学习(建议有css基础)
  8. 计算机二级Java上机环境安装与使用
  9. [AndroidO] [RK3399] -- CH341驱动移植
  10. 二维空间:点到直线距离的计算
  11. web版ppt制作插件impress.js源码注释翻译
  12. 文献管理软件 EndNote20.1 for Windows版
  13. Unexpandable Clocks不可扩展时钟 UG903
  14. 深度学习---卷积神经网络+tensorflow实现
  15. 认识计算机拓扑结构图,认识计算机网络拓扑结构
  16. EBS 个性化:个性化设置界面
  17. Introducing Heka
  18. 2022年疫情下的卡塔尔世界杯,你看了么,盘点一下爆冷的赛事
  19. hello 驱动编写-最简单的驱动程序
  20. System.Windows.Freezable 在未被引用的程序集中定义

热门文章

  1. Activity 设置SingleTask模式,当栈中已有Activity实例时的生命周期
  2. 图论复习(二)-——哈密顿图及其应用
  3. FFPlay命令入门教程
  4. esp8266开发入门教程(基于Arduino)——点亮RGB灯
  5. 开发rtmp直播流测试地址
  6. RTMP WireShark抓包实例说明
  7. QRCode.js 生成二维码(文字信息二维码)
  8. Python 正则表达式_re模块_使用compile加速
  9. 干货!大话EXT4文件系统完整版
  10. C++学习日记#3——追赶法求解系数矩阵为对角占优的三对角线方程组