今天面試的時候,讓寫乙個演算法,題意是將字串「how are you ?! i'm fine! 」轉變為「 !fine i'm !? you are how」,當時這道題並沒有做出來,現在記錄一下。
/*** 將字串進行反轉,必須保證單詞的正確拼寫
* @author administrator**/
public class testreserves
/*** 轉換字串
* @param chars
*/public static void resversestr(char chars) else
}} else }}
}/**
* 將char陣列指定位置的資料進行反轉
* @param chars 要反轉的char陣列
* @param begin 開始位置
* @param end 結束位置
*/public static void resverseword(char chars, int begin, int end) }}
字串反轉,單詞反轉
一 字串反轉,共蒐集了 7 種方法 public class stringreversed public static void reverse1 string s char c s.tochararray 方法二 for int i 0 i s.length 2 i for char l c sy...
字串單詞反轉
class solution param s,a string return a string def reversewords self,s if len s 0 return s s join s.split 去掉所有的空格,只保留字元 串 之間的空格 s s.strip strip 去掉字串兩...
JAVA 將字串(或部分字串)反轉
編寫 實現將乙個字串中字元的排列順序進行反轉,頭尾調換。將字串變成你字元陣列。對字元陣列反轉。將字元陣列變成字串。public static void main string args 將字串整體進行反轉 public static string reversestring string str 過...