leetcode344 Reverse String Java
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode344 Reverse String Java相关的知识,希望对你有一定的参考价值。
自己写法,不过不被leetcode接受,提示Time Limit Exceeded~~~
public String reverseString(String s) { String res = ""; Stack<Character> stack = new Stack<>(); char[] ch = s.toCharArray(); int count = 0; for(char c : ch) { count++; stack.push(c); } for(int i=0; i<count;i++) { res += stack.pop(); } return res; }
以上是关于leetcode344 Reverse String Java的主要内容,如果未能解决你的问题,请参考以下文章