您的位置:首页 > 游戏 > 手游 > 楼盘设计师工资一般多少_租用网络服务器的价格_杭州网站提升排名_绍兴seo

楼盘设计师工资一般多少_租用网络服务器的价格_杭州网站提升排名_绍兴seo

2024/11/18 5:29:05 来源:https://blog.csdn.net/lynyzy/article/details/142381699  浏览:    关键词:楼盘设计师工资一般多少_租用网络服务器的价格_杭州网站提升排名_绍兴seo
楼盘设计师工资一般多少_租用网络服务器的价格_杭州网站提升排名_绍兴seo

232.用栈实现队列

Collection——List——Vector类——Stack类

class MyQueue {Stack<Integer> stackIn;Stack<Integer> stackOut;public MyQueue() {stackIn=new Stack();stackOut=new Stack();} public void push(int x) {stackIn.push(x);}public int pop() {notempty();return stackOut.pop();}public int peek() {notempty();return stackOut.peek();}public boolean empty() {if(stackIn.isEmpty()&&stackOut.isEmpty())return true;elsereturn false;}public void notempty(){if(!stackOut.isEmpty())return;while(!stackIn.isEmpty()){stackOut.push(stackIn.pop());}}
}/*** Your MyQueue object will be instantiated and called as such:* MyQueue obj = new MyQueue();* obj.push(x);* int param_2 = obj.pop();* int param_3 = obj.peek();* boolean param_4 = obj.empty();*/

225. 用队列实现栈

Collection——Queue——LinkedList类

class MyStack {Queue<Integer> myStack;public MyStack() {myStack=new LinkedList();}public void push(int x) {myStack.offer(x);int size=myStack.size();for(int i=0;i<size-1;i++){myStack.offer(myStack.poll());}}  public int pop() {return myStack.poll();} public int top() {return myStack.peek();}public boolean empty() {return myStack.isEmpty();}
}
/*** Your MyStack object will be instantiated and called as such:* MyStack obj = new MyStack();* obj.push(x);* int param_2 = obj.pop();* int param_3 = obj.top();* boolean param_4 = obj.empty();*/

20. 有效的括号

Collection——Deque——LinkedList类

class Solution {public boolean isValid(String s) {Deque<Character> mystack=new LinkedList();char a;char[] ch=s.toCharArray();for(int i=0;i<ch.length;i++){a=ch[i];if(a=='('){mystack.push(')');}else if(a=='{'){mystack.push('}');}else if(a=='['){mystack.push(']');}else if(mystack.isEmpty()||mystack.peek()!=a){return false;}else{mystack.pop();  }}return mystack.isEmpty();}
}

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

StringBuilder(StringBuffer)

class Solution {public String removeDuplicates(String s) {StringBuffer sb=new StringBuffer();int index=-1;for(int i=0;i<s.length();i++){         char ch=s.charAt(i);if(sb.length()==0||sb.charAt(index)!=ch){index++;sb.append(ch);}else{sb.deleteCharAt(index);index--;}}return sb.toString();}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com