385. Mini Parser

Given a nested list of integers represented as a string, implement a parser to deserialize it.

Each element is either an integer, or a list -- whose elements may also be integers or other lists.

Note: You may assume that the string is well-formed:

String is non-empty.
String does not contain white spaces.
String contains only digits 0-9, [, - ,, ].
Example 1:

Given s = "324",

You should return a NestedInteger object which contains a single integer 324.
Example 2:

Given s = "[123,[456,[789]]]",

Return a NestedInteger object containing a nested list with 2 elements:

  1. An integer containing value 123.
  2. A nested list containing two elements:
    i. An integer containing value 456.
    ii. A nested list with one element:
    a. An integer containing value 789.

一刷
題解:
外層循壞字符串中的每個(gè)字符棒卷。

  1. 如果是'[', 把當(dāng)前的NestedInteger壓棧并創(chuàng)建一個(gè)新的
  2. 如果是']', 結(jié)束當(dāng)前的NestedInteger玛臂,彈出NestedInteger作為當(dāng)前的NestedInteger浆竭, 并把剛結(jié)束的NestedInteger加入其中
  3. 如果是逗號(hào)薇组,則把數(shù)字加入當(dāng)前的NestedInteger中

所以主要的變量有:stack, curr, l, r

public NestedInteger deserialize(String s) {
    if (s.isEmpty())
        return null;
    if (s.charAt(0) != '[') // ERROR: special case
        return new NestedInteger(Integer.valueOf(s));
        
    Stack<NestedInteger> stack = new Stack<>();
    NestedInteger curr = null;
    int l = 0; // l shall point to the start of a number substring; 
               // r shall point to the end+1 of a number substring
    for (int r = 0; r < s.length(); r++) {
        char ch = s.charAt(r);
        if (ch == '[') {
            if (curr != null) {
                stack.push(curr);
            }
            curr = new NestedInteger();
            l = r+1;
        } else if (ch == ']') {
            String num = s.substring(l, r);
            if (!num.isEmpty())
                curr.add(new NestedInteger(Integer.valueOf(num)));
            if (!stack.isEmpty()) {
                NestedInteger pop = stack.pop();
                pop.add(curr);
                curr = pop;
            }
            l = r+1;
        } else if (ch == ',') {
            if (s.charAt(r-1) != ']') {
                String num = s.substring(l, r);
                curr.add(new NestedInteger(Integer.valueOf(num)));
            }
            l = r+1;
        }
    }
    
    return curr;
}

二刷:
首先要理解題意九火,所有的數(shù)字都會(huì)用[]包住,表示一個(gè)NestedInteger object。[[123],[456]], NestedInteger裝有兩個(gè)object.

三刷
還是不能直接做出來吵聪。還需要熟練经备。

/**
 * // This is the interface that allows for creating nested lists.
 * // You should not implement it, or speculate about its implementation
 * public interface NestedInteger {
 *     // Constructor initializes an empty nested list.
 *     public NestedInteger();
 *
 *     // Constructor initializes a single integer.
 *     public NestedInteger(int value);
 *
 *     // @return true if this NestedInteger holds a single integer, rather than a nested list.
 *     public boolean isInteger();
 *
 *     // @return the single integer that this NestedInteger holds, if it holds a single integer
 *     // Return null if this NestedInteger holds a nested list
 *     public Integer getInteger();
 *
 *     // Set this NestedInteger to hold a single integer.
 *     public void setInteger(int value);
 *
 *     // Set this NestedInteger to hold a nested list and adds a nested integer to it.
 *     public void add(NestedInteger ni);
 *
 *     // @return the nested list that this NestedInteger holds, if it holds a nested list
 *     // Return null if this NestedInteger holds a single integer
 *     public List<NestedInteger> getList();
 * }
 */
class Solution {
    public NestedInteger deserialize(String s) {
        if(s.isEmpty()) return null;
        if(s.charAt(0) != '[') return new NestedInteger(Integer.valueOf(s));
        
        Stack<NestedInteger> stack = new Stack<>();
        int l = 0, r = 0;
        NestedInteger cur = null;
        int val = 0;
        for(r=0; r<s.length(); r++){
            char ch = s.charAt(r);
            if(ch == '['){
                if(cur!=null){
                    stack.push(cur);
                }
                cur = new NestedInteger();
                l = r+1;
            }else if(ch == ']'){
                String num = s.substring(l, r);
                if(!num.isEmpty()){
                   cur.add(new NestedInteger(Integer.valueOf(num))); 
                }
                if(!stack.isEmpty()){
                    NestedInteger prev = stack.pop();
                    prev.add(cur);
                    cur = prev;
                }
                l = r+1;
            }else if(ch == ','){
                if (s.charAt(r-1) != ']') {
                    String num = s.substring(l, r);
                    cur.add(new NestedInteger(Integer.valueOf(num)));
                }
                l = r+1;
            }
        }
        return cur;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市梧税,隨后出現(xiàn)的幾起案子沦疾,更是在濱河造成了極大的恐慌,老刑警劉巖第队,帶你破解...
    沈念sama閱讀 212,454評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件哮塞,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡凳谦,警方通過查閱死者的電腦和手機(jī)忆畅,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來尸执,“玉大人家凯,你說我怎么就攤上這事∪缡В” “怎么了绊诲?”我有些...
    開封第一講書人閱讀 157,921評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長褪贵。 經(jīng)常有香客問我驯镊,道長,這世上最難降的妖魔是什么竭鞍? 我笑而不...
    開封第一講書人閱讀 56,648評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮橄镜,結(jié)果婚禮上偎快,老公的妹妹穿的比我還像新娘。我一直安慰自己洽胶,他們只是感情好晒夹,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評(píng)論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著姊氓,像睡著了一般丐怯。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上翔横,一...
    開封第一講書人閱讀 49,950評(píng)論 1 291
  • 那天读跷,我揣著相機(jī)與錄音,去河邊找鬼禾唁。 笑死效览,一個(gè)胖子當(dāng)著我的面吹牛无切,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播丐枉,決...
    沈念sama閱讀 39,090評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼哆键,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了瘦锹?” 一聲冷哼從身側(cè)響起籍嘹,我...
    開封第一講書人閱讀 37,817評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎弯院,沒想到半個(gè)月后辱士,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡抽兆,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評(píng)論 2 327
  • 正文 我和宋清朗相戀三年识补,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片辫红。...
    茶點(diǎn)故事閱讀 38,724評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡凭涂,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出贴妻,到底是詐尸還是另有隱情切油,我是刑警寧澤,帶...
    沈念sama閱讀 34,409評(píng)論 4 333
  • 正文 年R本政府宣布名惩,位于F島的核電站澎胡,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏娩鹉。R本人自食惡果不足惜攻谁,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評(píng)論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望弯予。 院中可真熱鬧戚宦,春花似錦、人聲如沸锈嫩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽呼寸。三九已至艳汽,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間对雪,已是汗流浹背河狐。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評(píng)論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人甚牲。 一個(gè)月前我還...
    沈念sama閱讀 46,503評(píng)論 2 361
  • 正文 我出身青樓义郑,卻偏偏與公主長得像,于是被迫代替她去往敵國和親丈钙。 傳聞我的和親對(duì)象是個(gè)殘疾皇子非驮,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容

  • 背景 一年多以前我在知乎上答了有關(guān)LeetCode的問題, 分享了一些自己做題目的經(jīng)驗(yàn)。 張土汪:刷leetcod...
    土汪閱讀 12,740評(píng)論 0 33
  • Question Given a nested list of integers represented as a...
    FlynnLWang閱讀 456評(píng)論 0 0
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理雏赦,服務(wù)發(fā)現(xiàn)劫笙,斷路器,智...
    卡卡羅2017閱讀 134,637評(píng)論 18 139
  • Given a nested list of integers represented as a string, ...
    matrxyz閱讀 333評(píng)論 0 0
  • 這是個(gè)天色有點(diǎn)陰沉的禮拜天星岗。但是這絲毫不影響白甌城內(nèi)“大利甌菜館”的生意填大,還沒到正式飯點(diǎn)的時(shí)候,店堂內(nèi)已經(jīng)顧客...
    楠溪陳釀閱讀 389評(píng)論 1 5