Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 966 Bytes

catelog.md

File metadata and controls

33 lines (25 loc) · 966 Bytes
  1. 数组

    • 常用方法:slice, splice, concat, push, pop, shift, unshift, indexOf, lastIndexOf, every, forEach, map, filter, some, includes, join, find, sort, reverse, reduce()
    • 数组去重
    • 打乱数组
  2. 链表

    • 生成单向链表
    • 查找节点
    • 删除节点
    • 插入节点
    • 修改节点
    • 如何实现双向链表 v
    • 后进先出,使用数组进行模拟
    • 实际应用:
      • 左右括号的匹配
      • 逆波兰表达式
      • 函数的多级调用,递归等
      • 深度搜索寻找路径
  3. 队列

  4. 哈希表

    • Set, Map