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

@@ -12,11 +12,7 @@ namespace hello_algo.chapter_tree
public class binary_tree_bfs
{
/// <summary>
/// 层序遍历
/// </summary>
/// <param name="root"></param>
/// <returns></returns>
/* 层序遍历 */
public List<int> hierOrder(TreeNode root)
{
// 初始化队列,加入根结点