diff --git a/codes/csharp/chapter_array_and_linkedlist/array.cs b/codes/csharp/chapter_array_and_linkedlist/array.cs
index 95479574f..97a37f046 100644
--- a/codes/csharp/chapter_array_and_linkedlist/array.cs
+++ b/codes/csharp/chapter_array_and_linkedlist/array.cs
@@ -8,9 +8,7 @@ namespace hello_algo.chapter_array_and_linkedlist
{
public class Array
{
- ///
- /// 随机返回一个数组元素
- ///
+ /* 随机返回一个数组元素 */
public static int RandomAccess(int[] nums)
{
Random random = new();
@@ -19,9 +17,7 @@ namespace hello_algo.chapter_array_and_linkedlist
return randomNum;
}
- ///
- /// 扩展数组长度
- ///
+ /* 扩展数组长度 */
public static int[] Extend(int[] nums, int enlarge)
{
// 初始化一个扩展长度后的数组
@@ -35,9 +31,7 @@ namespace hello_algo.chapter_array_and_linkedlist
return res;
}
- ///
- /// 在数组的索引 index 处插入元素 num
- ///
+ /* 在数组的索引 index 处插入元素 num */
public static void Insert(int[] nums, int num, int index)
{
// 把索引 index 以及之后的所有元素向后移动一位
@@ -49,9 +43,7 @@ namespace hello_algo.chapter_array_and_linkedlist
nums[index] = num;
}
- ///
- /// 删除索引 index 处元素
- ///
+ /* 删除索引 index 处元素 */
public static void Remove(int[] nums, int index)
{
// 把索引 index 之后的所有元素向前移动一位
@@ -61,9 +53,7 @@ namespace hello_algo.chapter_array_and_linkedlist
}
}
- ///
- /// 遍历数组
- ///
+ /* 遍历数组 */
public static void Traverse(int[] nums)
{
int count = 0;
@@ -79,9 +69,7 @@ namespace hello_algo.chapter_array_and_linkedlist
}
}
- ///
- /// 在数组中查找指定元素
- ///
+ /* 在数组中查找指定元素 */
public static int Find(int[] nums, int target)
{
for (int i = 0; i < nums.Length; i++)
@@ -92,15 +80,13 @@ namespace hello_algo.chapter_array_and_linkedlist
return -1;
}
- ///
- /// 辅助函数,数组转字符串
- ///
+ /* 辅助函数,数组转字符串 */
public static string ToString(int[] nums)
{
return string.Join(",", nums);
}
- // Driver Code
+
[Test]
public static void Test()
{
diff --git a/codes/csharp/chapter_array_and_linkedlist/linked_list.cs b/codes/csharp/chapter_array_and_linkedlist/linked_list.cs
index d765724ff..81e1499cb 100644
--- a/codes/csharp/chapter_array_and_linkedlist/linked_list.cs
+++ b/codes/csharp/chapter_array_and_linkedlist/linked_list.cs
@@ -9,9 +9,7 @@ namespace hello_algo.chapter_array_and_linkedlist
{
public class linked_list
{
- ///
- /// 在链表的结点 n0 之后插入结点 P
- ///
+ /* 在链表的结点 n0 之后插入结点 P */
public static void Insert(ListNode n0, ListNode P)
{
ListNode? n1 = n0.next;
@@ -19,9 +17,7 @@ namespace hello_algo.chapter_array_and_linkedlist
P.next = n1;
}
- ///
- /// 删除链表的结点 n0 之后的首个结点
- ///
+ /* 删除链表的结点 n0 之后的首个结点 */
public static void Remove(ListNode n0)
{
if (n0.next == null)
@@ -32,9 +28,7 @@ namespace hello_algo.chapter_array_and_linkedlist
n0.next = n1;
}
- ///
- /// 访问链表中索引为 index 的结点
- ///
+ /* 访问链表中索引为 index 的结点 */
public static ListNode? Access(ListNode head, int index)
{
for (int i = 0; i < index; i++)
@@ -46,9 +40,7 @@ namespace hello_algo.chapter_array_and_linkedlist
return head;
}
- ///
- /// 在链表中查找值为 target 的首个结点
- ///
+ /* 在链表中查找值为 target 的首个结点 */
public static int Find(ListNode head, int target)
{
int index = 0;
@@ -62,7 +54,7 @@ namespace hello_algo.chapter_array_and_linkedlist
return -1;
}
- // Driver Code
+
[Test]
public void Test()
{
diff --git a/codes/csharp/chapter_tree/binary_search_tree.cs b/codes/csharp/chapter_tree/binary_search_tree.cs
index 5164cf780..d2e5f95e6 100644
--- a/codes/csharp/chapter_tree/binary_search_tree.cs
+++ b/codes/csharp/chapter_tree/binary_search_tree.cs
@@ -35,11 +35,7 @@ namespace hello_algo.chapter_tree
return root;
}
- ///
- /// 查找结点
- ///
- ///
- ///
+ /* 查找结点 */
public TreeNode? search(int num)
{
TreeNode? cur = root;
diff --git a/codes/csharp/chapter_tree/binary_tree_bfs.cs b/codes/csharp/chapter_tree/binary_tree_bfs.cs
index f0c914acb..9a57dbc17 100644
--- a/codes/csharp/chapter_tree/binary_tree_bfs.cs
+++ b/codes/csharp/chapter_tree/binary_tree_bfs.cs
@@ -12,11 +12,7 @@ namespace hello_algo.chapter_tree
public class binary_tree_bfs
{
- ///
- /// 层序遍历
- ///
- ///
- ///
+ /* 层序遍历 */
public List hierOrder(TreeNode root)
{
// 初始化队列,加入根结点
diff --git a/codes/csharp/chapter_tree/binary_tree_dfs.cs b/codes/csharp/chapter_tree/binary_tree_dfs.cs
index 0f89cb3b2..f8669d782 100644
--- a/codes/csharp/chapter_tree/binary_tree_dfs.cs
+++ b/codes/csharp/chapter_tree/binary_tree_dfs.cs
@@ -13,10 +13,7 @@ namespace hello_algo.chapter_tree
{
List list = new();
- ///
- /// 前序遍历
- ///
- ///
+ /* 前序遍历 */
void preOrder(TreeNode? root)
{
if (root == null) return;
@@ -26,10 +23,7 @@ namespace hello_algo.chapter_tree
preOrder(root.right);
}
- ///
- /// 中序遍历
- ///
- ///
+ /* 中序遍历 */
void inOrder(TreeNode? root)
{
if (root == null) return;
@@ -39,10 +33,7 @@ namespace hello_algo.chapter_tree
inOrder(root.right);
}
- ///
- /// 后序遍历
- ///
- ///
+ /* 后序遍历 */
void postOrder(TreeNode? root)
{
if (root == null) return;