第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

從 SQLite 獲取 ArrayList<String>

從 SQLite 獲取 ArrayList<String>

www說(shuō) 2021-08-25 15:36:29
您的代碼具有O(n)時(shí)間復(fù)雜度,我認(rèn)為這對(duì)于這個(gè)問(wèn)題來(lái)說(shuō)是最快的。但是您沒(méi)有利用StringBuilder,而是使用耗時(shí)的字符串連接。這是優(yōu)化后的版本:public static void main(String[] args) throws IOException {    BufferedReader bi = new BufferedReader(new InputStreamReader(System.in));    String line = bi.readLine();    String[] input = line.split(" ");    StringBuilder builder = new StringBuilder();    Stack<String> stack = new Stack<String>();    for(String e:input) {        switch(e) {            case("+"):            case("-"):            case("*"):            case("/"):                String i = stack.pop();                String k = stack.pop();                builder.setLength(0);                builder.append("(");                builder.append(k).append(e).append(i);                builder.append(")");                stack.push(builder.toString());                break;            default:                stack.push(e);        }    }    System.out.println(stack.pop());  }
查看完整描述

1 回答

?
明月笑刀無(wú)情

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超4個(gè)贊

你需要做這樣的事情:


Cursor cursor = db.rawQuery(...);

try {

    while (cursor.moveToNext()) {

        //Here you have to add the item in your array list


    }

} finally {

    cursor.close();

}


查看完整回答
反對(duì) 回復(fù) 2021-08-25
  • 1 回答
  • 0 關(guān)注
  • 191 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)