Unify the comment format of C# codes.

This commit is contained in:
Yudong Jin
2023-01-10 01:49:16 +08:00
parent b5019b0494
commit b7e09c4c1d
5 changed files with 18 additions and 57 deletions

View File

@ -35,11 +35,7 @@ namespace hello_algo.chapter_tree
return root;
}
/// <summary>
/// 查找结点
/// </summary>
/// <param name="num"></param>
/// <returns></returns>
/* 查找结点 */
public TreeNode? search(int num)
{
TreeNode? cur = root;