mirror of
https://github.com/krahets/hello-algo.git
synced 2025-12-19 07:17:54 +08:00
Unify the comment format of C# codes.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
// 初始化队列,加入根结点
|
||||
|
||||
Reference in New Issue
Block a user