Serialize binary Tree

Source: Internet
Author: User

Topic

Implement two functions, respectively, to serialize and deserialize a binary tree

Solving

What is serialization?
Can be understood as a storage structure
can also be deserialized after serialization
For the tree sequence number, it can be understood as a hierarchical traversal, but also to record the empty nodes, which is to be able to go back

 Public  class solution {String Serialize (TreeNode root) {if(Root = =NULL)return ""; StringBuilder SB =NewStringBuilder (); Serialize (root, SB);returnSb.tostring (); }voidSerialize (TreeNode root, StringBuilder sb) {if(Root = =NULL) {Sb.append ("#,");return;        } sb.append (Root.val); Sb.append (', ');        Serialize (Root.left, SB);    Serialize (Root.right, SB); }int Index= -1; TreeNode Deserialize (StringStr) {if(Str. Length () = =0)return NULL; string[] STRs =Str. Split (",");returnDeserialize (STRs); } TreeNode Deserialize (string[] STRs) {Index++;if(!strs[Index].equals ("#") {TreeNode root =NewTreeNode (0); Root.val = Integer.parseint (strs[Index]);            Root.left = Deserialize (STRs); Root.right = Deserialize (STRs);returnRoot }return NULL; }}

Serialize binary Tree

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.