update R6 and rebuild

This commit is contained in:
2025-09-28 23:52:11 +09:00
parent fc1f4447ab
commit 3b64e288ab
8 changed files with 10 additions and 10 deletions

BIN
out/reviews/R1.pdf (Stored with Git LFS)

Binary file not shown.

BIN
out/reviews/R2.pdf (Stored with Git LFS)

Binary file not shown.

BIN
out/reviews/R3.pdf (Stored with Git LFS)

Binary file not shown.

BIN
out/reviews/R4-1.pdf (Stored with Git LFS)

Binary file not shown.

BIN
out/reviews/R4-2.pdf (Stored with Git LFS)

Binary file not shown.

BIN
out/reviews/R5.pdf (Stored with Git LFS)

Binary file not shown.

BIN
out/reviews/R6.pdf (Stored with Git LFS)

Binary file not shown.

View File

@@ -65,7 +65,7 @@ print(create_array_table(
))
print(create_array_table(
[2, 1, 3, 4, 8, 7, 5, 6],
[2, 1, 3, 4, 7, 5, 6, 8],
[0, 0, 1, 1, 0, 0, 0, 1],
0, 0
))
@@ -115,6 +115,6 @@ The best-case occurs when the `PARTITION` partitiend the array balanced, which m
So, time-complexity of the case is:
$$T(n) = T(n/2) + O(n)$$
$$T(n) = T(0) + O(n)$$
$$\therefore T(n) = O(n)$$