Grokking the Coding Interview: Patterns for Coding Questions

0% completed

Introduction to Ordered Set Pattern

What is an Ordered Set?

Ordered Set is an extension of the Set data structure.

An Ordered Set is a powerful data structure that blends the uniqueness of a set with the ordered sequence of a list. Unlike traditional sets, where the elements are unsorted, an ordered set maintains the sequence of its elements, making it a versatile choice for many applications.

.....

.....

.....

Like the course? Get enrolled and start learning!
L

Lee

· 2 years ago

Yes, it is "ordered" but the time complexities are N or NlogN. Not correct at all. Does not employ a tree.

Show 1 reply
Spencer Lan

Spencer Lan

· 7 months ago

Am I wrong or does the code not utilize a TreeSet or Tree structure at all?

Show 1 reply
M

mailman14736

· 25 days ago

Hilariously bad implementation, use AI or something to generate better code - this implementation does not have the time/space complexity that you describe below it.....