hello-algo/codes/csharp/chapter_array_and_linkedlist/list.cs
Yudong Jin fcbaf101a4
Several bug fixes and improvements (#945)
* Update Dockerfile for code debugging.

* Format Python code using Black.

* Improve dark theme by defining html classes for the figures, animations and cover images.

* Fix several glossary translation.

* Update a code comment.

* Fix climbing_stairs_backtrack: the pruning should not require the sorted choices list.

* Update the code of array and list traversal.

* Fix a rendering issue of README.md

* Update code of list traversal.

* Fix array_definition.png

* Update README.md

* Fix max_capacity_moving_short_board.png

* Fix array.dart

* Fix array.dart

* Fix array.dart

* Fix array.dart
2023-11-14 21:27:35 +08:00

66 lines
2 KiB
C#

/**
* File: list.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
namespace hello_algo.chapter_array_and_linkedlist;
public class list {
[Test]
public void Test() {
/* 初始化列表 */
int[] numbers = new int[] { 1, 3, 2, 5, 4 };
List<int> nums = numbers.ToList();
Console.WriteLine("列表 nums = " + string.Join(",", nums));
/* 访问元素 */
int num = nums[1];
Console.WriteLine("访问索引 1 处的元素,得到 num = " + num);
/* 更新元素 */
nums[1] = 0;
Console.WriteLine("将索引 1 处的元素更新为 0 ,得到 nums = " + string.Join(",", nums));
/* 清空列表 */
nums.Clear();
Console.WriteLine("清空列表后 nums = " + string.Join(",", nums));
/* 尾部添加元素 */
nums.Add(1);
nums.Add(3);
nums.Add(2);
nums.Add(5);
nums.Add(4);
Console.WriteLine("添加元素后 nums = " + string.Join(",", nums));
/* 中间插入元素 */
nums.Insert(3, 6);
Console.WriteLine("在索引 3 处插入数字 6 ,得到 nums = " + string.Join(",", nums));
/* 删除元素 */
nums.RemoveAt(3);
Console.WriteLine("删除索引 3 处的元素,得到 nums = " + string.Join(",", nums));
/* 通过索引遍历列表 */
int count = 0;
for (int i = 0; i < nums.Count; i++) {
count += nums[i];
}
/* 直接遍历列表元素 */
count = 0;
foreach (int x in nums) {
count += x;
}
/* 拼接两个列表 */
List<int> nums1 = new() { 6, 8, 7, 10, 9 };
nums.AddRange(nums1);
Console.WriteLine("将列表 nums1 拼接到 nums 之后,得到 nums = " + string.Join(",", nums));
/* 排序列表 */
nums.Sort(); // 排序后,列表元素从小到大排列
Console.WriteLine("排序列表后 nums = " + string.Join(",", nums));
}
}