Custom Tree ( NAry ), Queue and Linked List structure based comments and replies.
As you can see, we are trying to execute operations on deep nested comments and replies.
-
Comments
extends
a Queue -
Comment
extends
an NAry Tree -
Core :
- Linked List
- Queue
extends
Linked List - NAryTree has a key and children, where children is an instance of
Queue
During rendering, we convert our comments queue
to an array and recursively render the components to build the entire layout out.
- If we were to use arrays, this is going to be incredibly expensive for deep nested comment operations.
- If we were to recursively solve this, this would result in an expensive computation as well as we'd have to backtrack.
This is where we use data structures to solve time complexity issues.
Each comment has a reference to it's root comment tree and it's subsequent parent comment tree's key
.
This essentially helps us to find out the instances of both and perform CRUD operations incredibly easily at the same time being performant.
This is tied together by Rematch, you can see the state operations here.