LintCode 7. Binary Tree Serialization

原題

LintCode 7. Binary Tree Serialization

Description

Design an algorithm and write code to serialize and deserialize a binary tree. Writing the tree to a file is called 'serialization' and reading back from the file to reconstruct the exact same binary tree is 'deserialization'.

Notice

There is no limit of how you deserialize or serialize a binary tree, LintCode will take your output of serialize as the input of deserialize, it won't check the result of serialize.

Example

An example of testdata: Binary tree {3,9,20,#,#,15,7}, denote the following structure:

  3
 / \
9  20
  /  \
 15   7

Our data serialization use bfs traversal. This is just for when you got wrong answer and want to debug the input.

You can use other method to do serializaiton and deserialization.

代碼

/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */


class Solution {
public:
    /**
    * This method will be invoked first, you should design your own algorithm
    * to serialize a binary tree which denote by a root node to a string which
    * can be easily deserialized by your own "deserialize" method later.
    */
    string serialize(TreeNode * root) {
        // write your code here
        string res = "";
        if (root == NULL) return res;
        queue<TreeNode *> q;
        int notNullCount = 1;
        q.push(root);
        while (!q.empty() && notNullCount) {
            TreeNode *node = q.front();
            q.pop();
            if (node == NULL) {
                res += "#,";
                q.push(NULL);
                q.push(NULL);
            } else {
                notNullCount--;
                res += to_string(node->val) + ",";
                q.push(node->left);
                q.push(node->right);
                if (node->left) notNullCount++;
                if (node->right) notNullCount++;
            }
        }
        return res;
    }

    /**
    * This method will be invoked second, the argument data is what exactly
    * you serialized at method "serialize", that means the data is not given by
    * system, it's given by your own serialize method. So the format of data is
    * designed by yourself, and deserialize it here as you serialize it in
    * "serialize" method.
    */
    TreeNode * deserialize(string &data) {
        // write your code here
        vector<string> vals;
        vector<TreeNode *> nodes;
        stringstream ss(data);
        string temp;
        while (getline(ss, temp, ',')) {
            vals.push_back(temp);
        }
        for (string val : vals) {
            if (val == "#") {
                nodes.push_back(NULL);
            } else {
                TreeNode *node = new TreeNode(stoi(val));
                if (!nodes.empty()) {
                    if (nodes.size() % 2) {
                        nodes[(nodes.size() - 1) / 2]->left = node;
                    } else {
                        nodes[(nodes.size() - 1) / 2]->right = node;
                    }
                }
                nodes.push_back(node);
            }
        }
        return nodes.empty() ? NULL : nodes.front();
    }
};
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子杨凑,更是在濱河造成了極大的恐慌竭宰,老刑警劉巖苛骨,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件乞巧,死亡現(xiàn)場離奇詭異,居然都是意外死亡券时,警方通過查閱死者的電腦和手機邮旷,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門黄选,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人婶肩,你說我怎么就攤上這事办陷。” “怎么了律歼?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵民镜,是天一觀的道長。 經(jīng)常有香客問我险毁,道長制圈,這世上最難降的妖魔是什么们童? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮鲸鹦,結(jié)果婚禮上慧库,老公的妹妹穿的比我還像新娘。我一直安慰自己馋嗜,他們只是感情好齐板,可當(dāng)我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著葛菇,像睡著了一般甘磨。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上眯停,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天济舆,我揣著相機與錄音,去河邊找鬼庵朝。 笑死吗冤,一個胖子當(dāng)著我的面吹牛又厉,可吹牛的內(nèi)容都是我干的九府。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼覆致,長吁一口氣:“原來是場噩夢啊……” “哼侄旬!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起煌妈,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤儡羔,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后璧诵,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體汰蜘,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年之宿,在試婚紗的時候發(fā)現(xiàn)自己被綠了族操。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡比被,死狀恐怖色难,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情等缀,我是刑警寧澤枷莉,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站尺迂,受9級特大地震影響笤妙,放射性物質(zhì)發(fā)生泄漏冒掌。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一蹲盘、第九天 我趴在偏房一處隱蔽的房頂上張望宋渔。 院中可真熱鬧,春花似錦辜限、人聲如沸皇拣。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽氧急。三九已至,卻和暖如春毫深,著一層夾襖步出監(jiān)牢的瞬間吩坝,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工哑蔫, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留钉寝,地道東北人。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓闸迷,卻偏偏與公主長得像嵌纲,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子腥沽,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,490評論 2 348

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

  • 背景 一年多以前我在知乎上答了有關(guān)LeetCode的問題, 分享了一些自己做題目的經(jīng)驗逮走。 張土汪:刷leetcod...
    土汪閱讀 12,738評論 0 33
  • 以前學(xué)習(xí)過分形幾何,很有意思今阳,由簡單的數(shù)學(xué)公式迭代計算得到的分形圖形师溅,放大后不會丟失細節(jié)。典型的如Mandelbr...
    rome753閱讀 9,003評論 1 23
  • 首先要先擁有自己的“鵝”盾舌∧钩簦可以將每一筆收入分成金鵝賬戶、夢想基金和日常消費妖谴,分配比例根據(jù)實際而定窿锉。但有兩點需要注意...
    墨瞳_3611閱讀 205評論 0 0