Skip to content

Commit 5bc9a87

Browse files
author
Isaac Ramirez
committed
- update docs
1 parent 9b5412f commit 5bc9a87

File tree

2 files changed

+5
-56
lines changed

2 files changed

+5
-56
lines changed

README.md

+1-52
Original file line numberDiff line numberDiff line change
@@ -14,60 +14,9 @@ Personal notes and JavaScript code for the book Algorithms (4th edition) by Robe
1414

1515
_For a list similar to the book site see this [algorithms list](/markdown/algorithms.md)._
1616

17-
### Chapter 1. Fundamentals
18-
19-
**Algorithms:**
20-
21-
* [Euclid's - p. 4](/src/algorithms/euclidean/euclidean.js)
22-
* [BinarySearch - p. 47](/src/algorithms/binary-search/binary-search.js)
23-
* [LinearSearch - p. 48](/src/algorithms/linear-search/linear-search.js)
24-
* [Dijkstra's Two-Stack: Expression Evaluation - p. 129](/src/algorithms/dijkstra-two-stack/dijkstra-two-stack.js)
25-
* [ThreeSum - p. 173](/src/algorithms/three-sum/three-sum.js)
26-
* [TwoSumFast - p. 189](/src/algorithms/two-sum-fast/two-sum-fast.js)
27-
* [ThreeSumFast - p. 190](/src/algorithms/three-sum-fast/three-sum-fast.js)
28-
* [QuickFindUF - p. 221](/src/algorithms/union-find/union-find.js)
29-
* [QuickUnionUF - p. 224](/src/algorithms/union-find-quick/union-find-quick.js)
30-
* [WeightedQuickUnionUF - p. 228](/src/algorithms/union-find-weighted/union-find-weighted.js)
31-
32-
**ADTs:**
33-
34-
* [BasicDate - p. 79](/src/adts/basic-date/basic-date.js)
35-
* [SmallDate - p. 79](/src/adts/small-date/small-date.js)
36-
* [Transaction - p. 79](/src/adts/transaction/transaction.js)
37-
* [Counter - p. 85](/src/adts/counter/counter.js)
38-
* [Accumulator - p. 93](/src/adts/accumulator/accumulator.js)
39-
* [FixedCapacityStack - p. 135](/src/adts/fixed-capacity-stack/fixed-capacity-stack.js)
40-
* [ResizingArrayStack - p. 141](/src/adts/resizable-array-stack/resizable-array-stack.js)
41-
* [Node - p. 142](/src/adts/node/node.js)
42-
* [Stack - p. 149](/src/adts/stack/stack.js)
43-
* [Queue - p. 151](/src/adts/queue/queue.js)
44-
* [Bag - p. 155](/src/adts/bag/bag.js)
45-
* [StopWatch - p. 175](/src/adts/stop-watch/stop-watch.js)
46-
47-
### Chapter 2. Sorting
48-
49-
**Algorithms:**
50-
51-
* [Selection Sort - p. 249](/src/algorithms/selection-sort/selection-sort.js)
52-
* [Insertion Sort - p. 251](/src/algorithms/insertion-sort/insertion-sort.js)
53-
* [Shell Sort - p. 259](/src/algorithms/shell-sort/shell-sort.js)
54-
* [Merge Sort - p. 273](/src/algorithms/merge-sort/merge-sort.js)
55-
* [MergeBU Sort - p. 278](/src/algorithms/merge-sort-bu/merge-sort-bu.js)
56-
* [Quick Sort - p. 289](/src/algorithms/quick-sort/quick-sort.js)
57-
* [Quick3way Sort - p. 299](/src/algorithms/quick-3way-sort/quick-3way-sort.js)
58-
59-
**ADTs:**
60-
61-
* [MinPQ - p. 311](/src/adts/min-priority-queue/min-priority-queue.js)
62-
* [MaxPQ - p. 318](/src/adts/max-priority-queue/max-priority-queue.js)
63-
64-
**Clients:**
65-
66-
* [SortCompare - p. 256](/src/examples/test-clients/sort-compare.client.js)
67-
6817
## Exercise Solutions
6918

70-
:warning: _Do **NOT** copy any of [these solutions](/src/exercises/index.md). These are for my reference only. You should have attempted to solve any of these exercises by your own after at least a few days before even trying to look for the solution. Finally, my solutions can be wrong too._
19+
:warning: _Do **NOT** copy any of my solutions, these are only for the future me. You should have attempted solving any of these exercises by your own at least for a couple of days before trying to look for a solution. My solutions can be **wrong**._
7120

7221
## Benchmarks
7322

docs/markdown/algorithms.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Every algorithm or ADT has a link pointing to the original Java implementation a
6363
* TopM | [js](/src/adts/min-priority-queue/min-priority-queue.client.js) | [java](https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/TopM.java.html) |
6464
* MaxPQ | [js](/src/adts/max-priority-queue/max-priority-queue.js) | [java](https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/MaxPQ.java.html) |
6565
* MinPQ | [js](/src/adts/min-priority-queue/min-priority-queue.js) | [java](https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/MinPQ.java.html) |
66-
* IndexMinPQ | js | java |
67-
* IndexMaxPQ | js | java |
68-
* Multiway | js | java |
69-
* Heap | js | java |
66+
* IndexMinPQ | [js](/src/adts/index-min-priority-queue/index-min-priority-queue.js) | [java](https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/IndexMinPQ.java.html) |
67+
* IndexMaxPQ | js | [java](https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/IndexMaxPQ.java.html) |
68+
* Multiway | [js](/src/adts/index-min-priority-queue/multiway.client.js) | [java](https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/Multiway.java.html) |
69+
* Heap | [js](/src/algorithms/heap-sort/heap-sort.js) | [java](https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/Heap.java.html) |

0 commit comments

Comments
 (0)