This issue includes useful resources that may be useful for implementing specific Data Structures in the future.
Notes
Disjoint Sets
Algorithms
ArrayBased Data Structures
JS isn't really a good language for implementing array-based data structures because the JS array primitive is actually a HashMap-ish implementation. Either way, it may be useful to try implementing some of these to compare performance vs the link-based alternatives.
Abstract Data Types
ADTs are pretty-much useless in JS but it doesn't hurt to reference them to outline common API characteristics
Miscellaneous
This issue includes useful resources that may be useful for implementing specific Data Structures in the future.
Notes
Disjoint Sets
Algorithms
ArrayBased Data Structures
JS isn't really a good language for implementing array-based data structures because the JS array primitive is actually a HashMap-ish implementation. Either way, it may be useful to try implementing some of these to compare performance vs the link-based alternatives.
Abstract Data Types
ADTs are pretty-much useless in JS but it doesn't hurt to reference them to outline common API characteristics
Miscellaneous