your task is to implement a binary search tree (bst) where each node is a linked list (ll) of movie titles. you are also required to perform a right rotation of a given node while maintaining the bst property. the nodes of the tree are alphabetically ordered (i.e. with ‘d’ as a parent node ‘c’ appears in its left sub-tree and ‘e’ appears in its right sub-tree.) the characters are the first letter of the movie. as more than one movie can have the same starting character, within the node, they are stored as an alphabetically sorted linked list. for example:

Answer :

Other Questions