Skip to content

Commit

Permalink
update: 240602 ver1
Browse files Browse the repository at this point in the history
  • Loading branch information
V1CeVersa authored and V1CeVersa committed Jun 2, 2024
1 parent 16f949f commit 5140dd2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/Computer Science/Algorithm/05 Sorting.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,9 @@ void insertSort (int arr[], int len) {
arr[j] = tmp;
}
}
```
```
## Merge Sort
归并排序的时间复杂度在任何情况下都是 $O(N\log N)$。
2 changes: 2 additions & 0 deletions docs/Math/Discrete Mathematics/10 Graph Theory.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ For $G = (V, E)$ and $H = (W, F)$.

## 10.3 Representing Graphs and Graph Isomorphism

**Adjacency Matrix**: A simple graph $G = (V, E)$ with $n$ vertices $(v_1,v_2,\cdots, v_n)$ can be represented by its adjacency matrix, A, with respect to this listing of the vertices, where

## 10.4 Connectivity

## 10.5 Euler and Hamilton Paths
Expand Down
4 changes: 4 additions & 0 deletions docs/Varia/Tools.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Tools Using Record

## 1. IDA

0 comments on commit 5140dd2

Please sign in to comment.