mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 04:31:55 +08:00
Fine tune
This commit is contained in:
@ -116,7 +116,7 @@ namespace hello_algo.chapter_computational_complexity
|
||||
quadraticRecur(n);
|
||||
// 指数阶
|
||||
TreeNode? root = buildTree(n);
|
||||
PrintUtil.printTree(root);
|
||||
PrintUtil.PrintTree(root);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -4,6 +4,8 @@
|
||||
* Author: haptear (haptear@hotmail.com)
|
||||
*/
|
||||
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace hello_algo.chapter_computational_complexity
|
||||
{
|
||||
public class worst_best_time_complexity
|
||||
@ -43,7 +45,8 @@ namespace hello_algo.chapter_computational_complexity
|
||||
|
||||
|
||||
/* Driver Code */
|
||||
public static void main(String[] args)
|
||||
[Test]
|
||||
public void Test()
|
||||
{
|
||||
for (int i = 0; i < 10; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user