Medium Data Structures Trees & Binary Trees
How do you serialize and deserialize a binary tree?
Answer
Serialization converts tree to string; deserialization reconstructs it. Use pre-order traversal with null markers. Serialize: recursively write node value (or 'null' for null nodes), separated by delimiters. Deserialize: split string into tokens, use recursion - take next token, if 'null' return null, else create node with value and recursively build left and right children. Both operations are O(n) time and space.
IIT Certified
Master These Concepts with IIT Certification
175+ hours of industry projects. Get placed at Bosch, Tata Motors, L&T and 500+ companies.
Relevant for Roles
Software Engineer Backend Developer Distributed Systems Engineer