You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/codes/dart/chapter_array_and_linkedlist/array.dart

108 lines
2.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* File: array.dart
* Created Time: 2023-01-20
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/
import 'dart:math';
class Array {
/* 随机返回一个 数组元素 */
int randomAccess(List nums) {
// 在区间[0,size) 中随机抽取一个数字
int randomIndex = Random().nextInt(nums.length);
// 获取并返回随机元素
int randomNum = nums[randomIndex];
return randomNum;
}
/* 扩展数组长度 */
List extend(List nums, int enlarge) {
// 初始化一个扩展长度后的数组元素初始值为0
List<int> res = List.filled(nums.length + enlarge, 0);
// 将原数组中的所有元素复制到新数组
for (var i = 0; i < nums.length; i++) {
res[i] = nums[i];
}
// 返回扩展后的新数组
return res;
}
/* 在数组的索引 index 处插入元素 num */
void insert(List nums, int num, int index) {
// 把索引index以及之后的所有元素向后移动一位
for (var i = nums.length - 1; i > index; i--) {
nums[i] = nums[i - 1];
}
// 将 num 赋给 index 处元素
nums[index] = num;
}
/* 删除索引 index 处元素 */
void remove(List nums, int index) {
for (var i = index; i < nums.length - 1; i++) {
nums[i] = nums[i + 1];
}
}
/* 遍历数组元素 */
void traverse(List nums) {
var count = 0;
// 通过索引遍历数组
for (var i = 0; i < nums.length; i++) {
count++;
}
// 直接遍历数组
for (var num in nums) {
count++;
}
// 通过forEach方法遍历数组
nums.forEach((element) {
count++;
});
}
/* 在数组中查找指定元素 */
int find(List nums, int target) {
for (var i = 0; i < nums.length; i++) {
if (nums[i] == target) return i;
}
return -1;
}
}
/* Driver Code */
int main() {
/* 初始化固定长度数组 */
var arr = List.filled(5, 0);
print('数组 arr = $arr');
List nums = [1, 3, 2, 5, 4];
print('数组 nums = $nums');
/* 随机访问 */
int randomNum = Array().randomAccess(nums);
print('在 nums 中获取随机元素 $randomNum');
/* 长度扩展 */
nums = Array().extend(nums, 3);
print('将数组长度扩展至 8 得到nums = $nums');
/* 插入元素 */
Array().insert(nums, 6, 3);
print("在索引 3 处插入数字 6 ,得到 nums = $nums");
/* 删除元素 */
Array().remove(nums, 2);
print("删除索引 2 处的元素,得到 nums = $nums");
/* 遍历元素 */
Array().traverse(nums);
/* 查找元素 */
int index = Array().find(nums, 3);
print("在 nums 中查找元素 3 ,得到索引 = $index");
return 0;
}