data-structure-typed/src/interfaces
2023-10-30 18:27:58 +08:00
..
binary-tree.ts [binary-tree] bug fix#27 2023-10-30 11:14:41 +08:00
doubly-linked-list.ts [project] github workflow added. eslint added. formating code by using prettier. 2023-09-21 12:52:17 +08:00
graph.ts [graph] Modify the data structure design of the graph to change the generics of Vertex and Edge to defaults, where it is possible to only pass the value types of Vertex and Edge for increased usability. 2023-10-30 18:27:58 +08:00
heap.ts [project] github workflow added. eslint added. formating code by using prettier. 2023-09-21 12:52:17 +08:00
index.ts [binary-tree, graph] In order to optimize the design of Binary Trees, unnecessary abstract classe removed, while enforcing method constraints between base classes and subclasses through interfaces. For Graph, it is necessary to use an abstract class as the base class, and interface constraints should be applied. Any data structures that are not within the scope of the plan deleted. 2023-10-17 21:06:41 +08:00
navigator.ts [project] github workflow added. eslint added. formating code by using prettier. 2023-09-21 12:52:17 +08:00
priority-queue.ts [project] github workflow added. eslint added. formating code by using prettier. 2023-09-21 12:52:17 +08:00
segment-tree.ts [project] github workflow added. eslint added. formating code by using prettier. 2023-09-21 12:52:17 +08:00
singly-linked-list.ts [project] github workflow added. eslint added. formating code by using prettier. 2023-09-21 12:52:17 +08:00