Skip to content

Commit 7707ab6

Browse files
committed
chore: modify statements in readme
1 parent 820bd7e commit 7707ab6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Algorithms Moonbit
22
[![check](https://github.com/moonbit-community/Algorithms-Moonbit/actions/workflows/check.yml/badge.svg)](https://github.com/moonbit-community/Algorithms-Moonbit/actions/workflows/check.yml)
33

4-
Here are some classic algorithms implemented using Moonbit.
4+
Here are some classic algorithms implemented using Moonbit. This repository aims to show you how to implement data structures and algorithms in a more than easy way. For development use, please refer to moonbitlang/core.
55

66
Welcome to contribute!!! specific reference [here](#contribution).
77

@@ -10,8 +10,8 @@ Welcome to contribute!!! specific reference [here](#contribution).
1010
| Name | State | Remarks |
1111
| :----------------------------: | :----------------: | :-------------------------------------------------------------------------------------------------------------------------------------------: |
1212
| Cons List | [Finished](/list/) | - |
13-
| Stack | Unfinished | - |
14-
| Queue(Mutable) | Unfinished | - |
13+
| Stack | [Finished](/stact/)| - |
14+
| Queue(Mutable) | [Finished](/queue/) | - |
1515
| Queue(Immutable) | Unfinished | - |
1616
| LinkedList | Unfinished | - |
1717
| Set(Mutable) | Unfinished | - |
@@ -22,26 +22,26 @@ Welcome to contribute!!! specific reference [here](#contribution).
2222
| HashSet(Immutable) | Unfinished | - |
2323
| HashMap(Mutable) | Unfinished | - |
2424
| HashMap(Immutable) | Unfinished | - |
25-
| Heap(Binary) | Unfinished | - |
25+
| Heap(Binary) | [Finished](/heap/)| - |
2626
| Heap(Pairing) | Unfinished | - |
2727
| Leftist Tree(Mutable) | Unfinished | - |
2828
| Leftist Tree(Immutable) | Unfinished | - |
29-
| Union-Find Set(Mutable) | Unfinished | - |
29+
| Union-Find Set(Mutable) | [Finished](/dsu/) | - |
3030
| Union-Find Set(Immutable) | Unfinished | - |
31-
| Segment Tree(Mutable, no lazy) | Unfinished | - |
31+
| Segment Tree(Mutable, no lazy) | [Finished](/segment_tree/)| - |
3232
| Segment Tree(Mutable, lazy) | Unfinished | - |
3333
| Segment Tree(Immutable) | Unfinished | - |
3434
| BST | Unfinished | - |
3535
| Treap(Mutable) | Unfinished | - |
3636
| Treap(Immutable) | Unfinished | - |
3737
| Splay | Unfinished | - |
38-
| AVL | Unfinished | - |
38+
| AVL | [Finished](/avl/)| - |
3939
| RBT | Unfinished | - |
4040
| Trie(Mutable) | Unfinished | - |
4141
| Trie(Immutable) | Unfinished | - |
4242
| Finger Tree | Unfinished | - |
4343
| Binary Exponentiation | Unfinished | - |
44-
| KMP | Unfinished | - |
44+
| KMP | [Finished](/kmp/) | - |
4545
| Sort | Unfinished | There are too many algorithms of this sorting and they are always in an unfinished state. Welcome to contribute different sorting algorithms! |
4646

4747
## Contribution

0 commit comments

Comments
 (0)