Skip to content

Commit

Permalink
Fix array.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
krahets committed Nov 14, 2023
1 parent e7abf11 commit e4c21b0
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions codes/dart/chapter_array_and_linkedlist/array.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import 'dart:math';

/* 随机访问元素 */
int randomAccess(List nums) {
int randomAccess(List<int> nums) {
// 在区间 [0, nums.length) 中随机抽取一个数字
int randomIndex = Random().nextInt(nums.length);
// 获取并返回随机元素
Expand All @@ -18,7 +18,7 @@ int randomAccess(List nums) {
}

/* 扩展数组长度 */
List extend(List nums, int enlarge) {
List<int> extend(List<int> nums, int enlarge) {
// 初始化一个扩展长度后的数组
List<int> res = List.filled(nums.length + enlarge, 0);
// 将原数组中的所有元素复制到新数组
Expand All @@ -30,7 +30,7 @@ List extend(List nums, int enlarge) {
}

/* 在数组的索引 index 处插入元素 num */
void insert(List nums, int num, int index) {
void insert(List<int> nums, int num, int index) {
// 把索引 index 以及之后的所有元素向后移动一位
for (var i = nums.length - 1; i > index; i--) {
nums[i] = nums[i - 1];
Expand All @@ -40,32 +40,32 @@ void insert(List nums, int num, int index) {
}

/* 删除索引 index 处元素 */
void remove(List nums, int index) {
void remove(List<int> nums, int index) {
// 把索引 index 之后的所有元素向前移动一位
for (var i = index; i < nums.length - 1; i++) {
nums[i] = nums[i + 1];
}
}

/* 遍历数组元素 */
void traverse(List nums) {
void traverse(List<int> nums) {
int count = 0;
// 通过索引遍历数组
for (var i = 0; i < nums.length; i++) {
count += nums[i];
}
// 直接遍历数组元素
for (var x in nums) {
count += x;
for (int num in nums) {
count += num;
}
// 通过 forEach 方法遍历数组
nums.forEach((element) {
count += element;
nums.forEach((num) {
count += num;
});
}

/* 在数组中查找指定元素 */
int find(List nums, int target) {
int find(List<int> nums, int target) {
for (var i = 0; i < nums.length; i++) {
if (nums[i] == target) return i;
}
Expand All @@ -77,7 +77,7 @@ void main() {
/* 初始化数组 */
var arr = List.filled(5, 0);
print('数组 arr = $arr');
List nums = [1, 3, 2, 5, 4];
List<int> nums = [1, 3, 2, 5, 4];
print('数组 nums = $nums');

/* 随机访问 */
Expand All @@ -96,7 +96,7 @@ void main() {
remove(nums, 2);
print("删除索引 2 处的元素,得到 nums = $nums");

/* 遍历元素 */
/* 遍历数组 */
traverse(nums);

/* 查找元素 */
Expand Down

0 comments on commit e4c21b0

Please sign in to comment.