首页 > 其他分享 >关于刷Leetcode-剑指offer学习计划-需要关注的题目

关于刷Leetcode-剑指offer学习计划-需要关注的题目

时间:2023-03-12 19:44:13浏览次数:43  
标签:题目 数字 offer 链表 俩个 数组 Leetcode

左旋转字符串

二维数组中的查找

旋转数组的最小数字

股票的最大利润

青蛙跳台阶

把数字翻译成字符串

俩个链表的第一个公共节点

和为s的俩个数字

矩阵中的路径

机器人的运动范围

 

二叉搜索树与双向链表

把数组排成最小的数

最的k个数

数据流中的中位数

 

剪绳子1~2

 

 

 

分治算法:

数组中的逆序对

 

 

数学:

 

标签:题目,数字,offer,链表,俩个,数组,Leetcode
From: https://www.cnblogs.com/LkbHugh/p/17208891.html

相关文章

  • PAT甲级题目对应知识点分类梳理
    PAT甲级的106道题的知识点与对应的题号整理如下,便于做专项练习和巩固!1、数据结构可以用STL系列栈:1051堆:1098队列:1014、1056链表:1032、1052、1074、1097、1133并查集:110......
  • Java 剑指offer(16) 打印1到最大的n位数
    题目输入数字n,按顺序打印出从1最大的n位十进制数。比如输入3,则打印出1、2、3一直到最大的3位数即999。思路陷阱:n过大时是大数问题,不能简单用int或者long数据输出,需要采......
  • 双指针技巧数组题目
    题目难度要点删除有序数组中的重复项●快指针与慢指针值不同,那么应该将值放在慢指针下一位移除元素●快指针对应值若不需移除,那么应该将值放在当前慢指针......
  • leetcode-1394-easy
    FindLuckyIntegerinAnArrayGivenanarrayofintegersarr,aluckyintegerisanintegerthathasafrequencyinthearrayequaltoitsvalue.Returnthe......
  • leetcode-1408-easy
    StringMatchinginanArrayGivenanarrayofstringwords,returnallstringsinwordsthatisasubstringofanotherword.Youcanreturntheanswerinanyo......
  • leetcode-836-easy
    RectangleOverlapAnaxis-alignedrectangleisrepresentedasalist[x1,y1,x2,y2],where(x1,y1)isthecoordinateofitsbottom-leftcorner,and(x2,y2)......
  • leetcode-1122-easy
    RelativeSortArrayGiventwoarraysarr1andarr2,theelementsofarr2aredistinct,andallelementsinarr2arealsoinarr1.Sorttheelementsofarr1su......
  • leetcode-1071-easy
    GreatestCommonDivisorofStringsFortwostringssandt,wesay"tdividess"ifandonlyifs=t+...+t(i.e.,tisconcatenatedwithitselfoneormor......
  • leetcode-1389-easy
    CreateTargetArrayintheGivenOrderGiventwoarraysofintegersnumsandindex.Yourtaskistocreatetargetarrayunderthefollowingrules:Initiallyt......
  • leetcode-1544-easy
    MakeTheStringGreatGivenastringsofloweranduppercaseEnglishletters.Agoodstringisastringwhichdoesn'thavetwoadjacentcharacterss[i]and......