employer cover photo
employer logo
employer logo

Tableau Software

Part of Salesforce

Is this your company?

Tableau Software Interview Question

Explain and implement a serialization of a binary tree.

Interview Answer

Anonymous

Dec 10, 2015

recursive map: {value: [serialize(left), serialize(right)]}, where serialized leaf is null.