練習 要對字串進行長度 由短到長 排序。

2022-08-27 04:09:09 字數 506 閱讀 7616

/**

* 字串由短到長的排序

* 思路:

* 1.排序,想到treeset集合,因為字串扔到treeset集合中,能自動排序.

* 2.字串排序,是因為字串本身具備自然排序的功能.

* 3.但是依靠的是它的自然排序是字母由小到大排序,所以只能用比較器定義長度排序

* 4.而且treeset直接能在構造方法中傳入比較器.

* 5.輸出結果. */

public

class

treesettest

});strset.add("zsgasg");

strset.add("zsg");

strset.add("zsgzg");

strset.add("zsgansds");

for(iterator it =strset.iterator();it.hasnext();)}}

view code

填充字串到指定長度

填充字串到指定長度 import sys defpadding str txt,widt h,lef t,righ t if lef t true and righ t false return format txt,widt h 1 字元在左邊,在右邊填充 elif lef t false and...

python練習 字串按固定長度分隔

連續輸入2次字串,並按長度為8拆分每個字串,然後輸出到新的字串陣列,拆分規則是 若字串不是8整倍數需要右側補數字0,空字串不處理。思路一 輸入的字串長度不足8位或者不是8的整數倍,都右補0,補齊後的新字串滿足為8的整數倍,然後將新字串按照下標進行每8位分隔至乙個list中 思路二 輸入的字串長度不足...

字串練習 獲取子串的個數和最大長度子串

package day19 author khq public class stringdemo 獲取子串個數 public static intgetsubstringnum string str1,string str2 else else else indeof,返回第一次索引位置,注意不要為...