Alice52 / algorithms

This repository is for learning Algorithms.
https://programmercarl.com/
0 stars 0 forks source link

[daily] 2021-09-01 #161

Closed Alice52 closed 3 years ago

Alice52 commented 3 years ago
  1. reference

  2. discription

    • 用栈实现队列
  3. core

    • 双栈实现队列: pop 处理

  1. reference

  2. discription

    • 用队列实现栈
  3. core

    • 一个队列实现, push 时处理

  1. reference
  2. discription
    • 每日温度
  3. core

    • 单调栈求下标

  1. reference
  2. discription
    • 下一个更大元素 I
  3. core

    • 单调栈 + HashMap

  1. reference
  2. discription
    • 滑动窗口最大值
  3. core

    • 单调队列
    • || 优先队列