Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
krahets committed Mar 22, 2024
1 parent cb751c0 commit c7a6914
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public void Test() {
count = LogRecur(n);
Console.WriteLine("对数阶(递归实现)的操作数量 = " + count);

count = LinearLogRecur((n);
count = LinearLogRecur(n);
Console.WriteLine("线性对数阶(递归实现)的操作数量 = " + count);

count = FactorialRecur(n);
Expand Down

0 comments on commit c7a6914

Please sign in to comment.