【leetcode】151. Reverse Words in a String

解題思路: 雙指針 提交代碼: class Solution { public String reverseWords(String s) { if(s==null||s.length()==0) return s; String res=""; int p1=s.length()-1,p2; while(p1>=0&&s.charAt(p1)==' ') p1--;
相關文章
相關標籤/搜索