Eagle233-Blog

Eagle233-Blog

dev-mdsuper


[Algorithms] LeetCode 347. 前 K 个高频元素


Categories Algorithms StackAndQueue | Tags

来源:代码随想录 LeetCode 347. 前 K 个高频元素 优先队列 小顶堆重载的操作必须是公开的;元素、底层容器、比较函数被定义在优先队列中;输出要倒序。 取出头部元素竟然用的是qu...


[Algorithms] LeetCode 239. 滑动窗口最大值


Categories Algorithms StackAndQueue | Tags

来源:代码随想录 LeetCode 239. 滑动窗口最大值 自定义单调队列注意检查非空;注意第一次要加入最大值;注意单调队列如何维持;注意弹出时要判断是否需要弹出。 class Solut...


[Algorithms] LeetCode 150. 逆波兰表达式求值


Categories Algorithms StackAndQueue | Tags

来源:代码随想录 LeetCode 150. 逆波兰表达式求值 栈模拟注意string的输入输出处理,小心负数。 class Solution { public: int ...


[总结] 我的大一上——GPA之战


Categories 总结 | Tags

Here's something encrypted, password is required to continue reading.


[Algorithms] LeetCode 1047. 删除字符串中的所有相邻重复项


Categories Algorithms StackAndQueue | Tags

来源:代码随想录 LeetCode 1047. 删除字符串中的所有相邻重复项 栈模拟注意是两两删除。 class Solution { public: string rem...


[Algorithms] LeetCode 20. 有效的括号


Categories Algorithms StackAndQueue | Tags

来源:代码随想录 LeetCode 20. 有效的括号 栈模拟注意最后判断空栈。 class Solution { public: bool isValid(string ...


[Algorithms] LeetCode 225. 用队列实现栈


Categories Algorithms StackAndQueue | Tags

来源:代码随想录 LeetCode 225. 用队列实现栈 单个队列模拟栈class MyStack { public: queue<int> que; ...


[Algorithms] LeetCode 232.用栈实现队列


Categories Algorithms StackAndQueue | Tags

来源:代码随想录 LeetCode 232.用栈实现队列 直观的方法效率不高。 class MyQueue { public: stack<int> in; ...


[CSAPP] Lab2 - Bomb Lab Report


Categories CSAPP | Tags

整体思路:利用汇编语言知识结合 gdb 调试一起推导过程,仅调试和仅观察都无法解开问题,必须一边调试一边理解汇编代码,找出答案规律。 Phase 1汇编代码0000000000400ee0 ...


[Algorithms] LeetCode 459. 重复的子字符串


Categories Algorithms String | Tags

来源:代码随想录 LeetCode 459. 重复的子字符串 KMP如果 len % (len - next[len - 1]) == 0并且next[len - 1] != 0 ,则说明数...



© 2026 Eagle233
Powered By Hexo & Theme mdsuper
Search