Modify some formats.

This commit is contained in:
ming
2022-12-16 16:57:16 +08:00
committed by Ming
parent 0a0374efa0
commit 49756d8c7e
4 changed files with 36 additions and 22 deletions

View File

@@ -6,7 +6,9 @@ namespace hello_algo.chapter_array_and_linkedlist
{
public class Array
{
//随机返回一个数组元素
/// <summary>
/// 随机返回一个数组元素
/// </summary>
public static int RandomAccess(int[] nums)
{
Random random = new();
@@ -15,7 +17,9 @@ namespace hello_algo.chapter_array_and_linkedlist
return randomNum;
}
//扩展数组长度
/// <summary>
/// 扩展数组长度
/// </summary>
public static int[] Extend(int[] nums, int enlarge)
{
// 初始化一个扩展长度后的数组
@@ -29,7 +33,9 @@ namespace hello_algo.chapter_array_and_linkedlist
return res;
}
//在数组的索引 index 处插入元素 num
/// <summary>
/// 在数组的索引 index 处插入元素 num
/// </summary>
public static void Insert(int[] nums, int num, int index)
{
// 把索引 index 以及之后的所有元素向后移动一位
@@ -41,7 +47,9 @@ namespace hello_algo.chapter_array_and_linkedlist
nums[index] = num;
}
//删除索引 index 处元素
/// <summary>
/// 删除索引 index 处元素
/// </summary>
public static void Remove(int[] nums, int index)
{
// 把索引 index 之后的所有元素向前移动一位
@@ -51,7 +59,9 @@ namespace hello_algo.chapter_array_and_linkedlist
}
}
//遍历数组
/// <summary>
/// 遍历数组
/// </summary>
public static void Traverse(int[] nums)
{
int count = 0;
@@ -67,7 +77,9 @@ namespace hello_algo.chapter_array_and_linkedlist
}
}
//在数组中查找指定元素
/// <summary>
/// 在数组中查找指定元素
/// </summary>
public static int Find(int[] nums, int target)
{
for (int i = 0; i < nums.Length; i++)
@@ -78,7 +90,9 @@ namespace hello_algo.chapter_array_and_linkedlist
return -1;
}
//辅助函数,数组转字符串
/// <summary>
/// 辅助函数,数组转字符串
/// </summary>
public static string ToString(int[] nums)
{
return string.Join(",", nums);

View File

@@ -9,7 +9,7 @@ namespace hello_algo.chapter_array_and_linkedlist
public class LinkedList
{
/// <summary>
///在链表的结点 n0 之后插入结点 P
/// 在链表的结点 n0 之后插入结点 P
/// </summary>
public static void Insert(ListNode n0, ListNode P)
{
@@ -32,7 +32,7 @@ namespace hello_algo.chapter_array_and_linkedlist
}
/// <summary>
///访问链表中索引为 index 的结点
/// 访问链表中索引为 index 的结点
/// </summary>
public static ListNode Access(ListNode head, int index)
{