Feature #4: Validate Sorted Participants Data

Implement the "Validate Sorted Participants Data" feature for our "Zoom" project.

Description

Zoom is an application that helps to connect many people all over the world. It uses a binary search tree (BST) to maintain the participants’ data on the server and client-sides. The participants’ data is sent from the server to the client in the serialized form and then deserialized into a BST on the client-side. Let’s assume that when a new client joins a meeting, it downloads the participant list for the meeting. The list is serialized into a BST and sent over the network from the server to the client. Once the list is received from the client, we will verify that it was received correctly and that no errors occurred during the transmission. This feature will show us how to validate the BST containing the client-side participants’ data.

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.