摘要:
这个 不是很简单嘛。。。。 用一个队列来实现,每次pop和top的时候把数据循环从头部取出尾部输入,就可以得到和栈一样的顺序 class MyStack { /** Initialize your data structure here. */ private Queue<Integer> queu 阅读全文
摘要:
脑壳铁了,只想到用栈,没什么思路我的妈 题解中用栈的思路是: class Solution { public int trap(int[] height) { int sum=0; Stack<Integer> stack=new Stack<>(); int current=0; while(cu 阅读全文
摘要:
自己做的错了,没考虑到中间可能有多个空格: public static String reverseWords(String s){ String[] s1 = s.trim().split(" "); String s2=new String(); s2=s1[s1.length-1]+" "; 阅读全文
摘要:
https://snailclimb.gitee.io/javaguide/#/docs/operating-system/basis 程序员必知的 89 个操作系统核心概念 写给大忙人看的操作系统 进程和线程基础知识全家桶,30 张图一套带走 真棒!20 张图揭开内存管理的迷雾,瞬间豁然开朗 操作 阅读全文