-3
比較集合中的元素(不知道索引,因此可以使用contains/equals來比較字符串值),檢查是否存在,然後必須爲該字符串值添加一些字符(將從其他地方拾取),然後將其添加回集合中作爲最後一個元素。
示例方案:
xyz<Collection> contains these values:
"abc"
"hgj"
"jsh"
"yjk"
if (xyz.contains("jsh")){
then concat "jsh" + " " + randomOtherStuff
And put it back in the collection to be last element so when printed the order is
"abc"
"hgj"
"yjk"
"jsh + " " + randomOtherStuff"
}
謝謝所有幫助,提前:d
你有沒有嘗試什麼嗎? – 2015-02-09 23:13:39
Collections.binarySearch(xyz,「jsh」)將返回索引。 – 2015-02-09 23:13:41