多個字串進行ASCII排序

2022-08-28 13:00:11 字數 842 閱讀 5904

一、最近做專案需要對多個字串進行ascii從小到大排序加密,寫個隨筆記錄下學習,**如下:

/**

* 字串工具類

* @author

skyhcwwu */

public

class

stringutil ;

system.err.println("排序前string:\n" +convertostring(source1));

system.err.println();

//排序

sortstring(source1);

system.err.println("排序後string:\n" +convertostring(source1));

}/*** 對傳入的字串陣列進行ascii排序

* @param

source 字串陣列

* @return

*/public

static

string sortstring(string source)

else

if (str1.charat(j)

else}}

}return

source;

}public

static

string convertostring(string source)

else

}return

sb.tostring();}}

二、執行main方法後得到的結果:

多個字串拼接倒敘排序

一點一點成長一點點的記錄都是以後的回憶也是自己從乙個菜鳥成長為大神的乙個過程 long a 12 string b string.valueof a long型別轉換為字串型別 int rand random.nextint 10 string nonce string valueof rand i...

使用氣泡排序,排序多個字串

define crt secure no warnings 1 include include include int main char str 指標陣列,每乙個都是字元指標 int i 0 int j 0 int flag int size sizeof str sizeof str 0 for...

C語言 氣泡排序排序多個字串

strcmp函式 原型 extern int strcmp const char s1,const char s2 用法 include 功能 比較字串s1和s2。一般形式 strcmp 字串1,字串2 說明 當s1s2時,返回值 0 即 兩個字串自左向右逐個字元相比 按ascii值大小相比較 直到...