Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 0 additions & 78 deletions src/data-structures/disjoint-set/DisjointSetAdhoc.js

This file was deleted.

5 changes: 0 additions & 5 deletions src/data-structures/disjoint-set/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ _MakeSet_ creates 8 singletons.

After some operations of _Union_, some sets are grouped together.

## Implementation

- [DisjointSet.js](./DisjointSet.js)
- [DisjointSetAdhoc.js](./DisjointSetAdhoc.js) - The minimalistic (ad hoc) version of a DisjointSet (or a UnionFind) data structure that doesn't have external dependencies and that is easy to copy-paste and use during the coding interview if allowed by the interviewer (since many data structures in JS are missing).

## References

- [Wikipedia](https://en.wikipedia.org/wiki/Disjoint-set_data_structure)
Expand Down
50 changes: 0 additions & 50 deletions src/data-structures/disjoint-set/__test__/DisjointSetAdhoc.test.js

This file was deleted.

115 changes: 0 additions & 115 deletions src/data-structures/heap/MaxHeapAdhoc.js

This file was deleted.

117 changes: 0 additions & 117 deletions src/data-structures/heap/MinHeapAdhoc.js

This file was deleted.

5 changes: 0 additions & 5 deletions src/data-structures/heap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ Where:

> In this repository, the [MaxHeap.js](./MaxHeap.js) and [MinHeap.js](./MinHeap.js) are examples of the **Binary** heap.

## Implementation

- [MaxHeap.js](./MaxHeap.js) and [MinHeap.js](./MinHeap.js)
- [MaxHeapAdhoc.js](./MaxHeapAdhoc.js) and [MinHeapAdhoc.js](./MinHeapAdhoc.js) - The minimalistic (ad hoc) version of a MinHeap/MaxHeap data structure that doesn't have external dependencies and that is easy to copy-paste and use during the coding interview if allowed by the interviewer (since many data structures in JS are missing).

## References

- [Wikipedia](https://en.wikipedia.org/wiki/Heap_(data_structure))
Expand Down
Loading