From da4a01aa93b9c273c8129004a584ebf9601bf497 Mon Sep 17 00:00:00 2001 From: krahets Date: Sat, 3 Jun 2023 22:18:57 +0800 Subject: [PATCH] deploy --- chapter_array_and_linkedlist/list/index.html | 16 +- .../time_complexity/index.html | 20 +-- search/search_index.json | 2 +- sitemap.xml | 150 +++++++++--------- sitemap.xml.gz | Bin 755 -> 755 bytes 5 files changed, 94 insertions(+), 94 deletions(-) diff --git a/chapter_array_and_linkedlist/list/index.html b/chapter_array_and_linkedlist/list/index.html index a19e23f7e..cccc740c9 100644 --- a/chapter_array_and_linkedlist/list/index.html +++ b/chapter_array_and_linkedlist/list/index.html @@ -2813,7 +2813,7 @@ /* 列表扩容 */ public void extendCapacity() { - // 新建一个长度为 size 的数组,并将原数组拷贝到新数组 + // 新建一个长度为原数组 extendRatio 倍的新数组,并将原数组拷贝到新数组 nums = Arrays.copyOf(nums, capacity() * extendRatio); // 更新列表容量 capacity = nums.length; @@ -2920,7 +2920,7 @@ /* 列表扩容 */ void extendCapacity() { - // 新建一个长度为 size * extendRatio 的数组,并将原数组拷贝到新数组 + // 新建一个长度为原数组 extendRatio 倍的新数组 int newCapacity = capacity() * extendRatio; int *tmp = nums; nums = new int[newCapacity]; @@ -3014,7 +3014,7 @@ def extend_capacity(self) -> None: """列表扩容""" - # 新建一个长度为 self.__size 的数组,并将原数组拷贝到新数组 + # 新建一个长度为原数组 __extend_ratio 倍的新数组,并将原数组拷贝到新数组 self.__nums = self.__nums + [0] * self.capacity() * (self.__extend_ratio - 1) # 更新列表容量 self.__capacity = len(self.__nums) @@ -3117,7 +3117,7 @@ /* 列表扩容 */ func (l *myList) extendCapacity() { - // 新建一个长度为 self.__size 的数组,并将原数组拷贝到新数组 + // 新建一个长度为原数组 extendRatio 倍的新数组,并将原数组拷贝到新数组 l.nums = append(l.nums, make([]int, l.numsCapacity*(l.extendRatio-1))...) // 更新列表容量 l.numsCapacity = len(l.nums) @@ -3209,7 +3209,7 @@ /* 列表扩容 */ extendCapacity() { - // 新建一个长度为 size 的数组,并将原数组拷贝到新数组 + // 新建一个长度为原数组 extendRatio 倍的新数组,并将原数组拷贝到新数组 this.#nums = this.#nums.concat( new Array(this.capacity() * (this.#extendRatio - 1)) ); @@ -3620,7 +3620,7 @@ /* 列表扩容 */ func extendCapacity() { - // 新建一个长度为 size 的数组,并将原数组拷贝到新数组 + // 新建一个长度为原数组 extendRatio 倍的新数组,并将原数组拷贝到新数组 nums = nums + Array(repeating: 0, count: _capacity * (extendRatio - 1)) // 更新列表容量 _capacity = nums.count @@ -3731,7 +3731,7 @@ // 列表扩容 pub fn extendCapacity(self: *Self) !void { - // 新建一个长度为 size * extend_ratio 的数组,并将原数组拷贝到新数组 + // 新建一个长度为原数组 extendRatio 倍的新数组,并将原数组拷贝到新数组 var newCapacity = self.capacity() * self.extend_ratio; var extend = try self.mem_allocator.alloc(T, newCapacity); std.mem.set(T, extend, @as(T, 0)); @@ -3826,7 +3826,7 @@ /* 列表扩容 */ void extendCapacity() { - // 新建一个长度为 _capacity * _extendRatio 的数组 + // 新建一个长度为原数组 _extendRatio 倍的新数组 final _newNums = List.filled(_capacity * _extendRatio, 0); // 将原数组拷贝到新数组 List.copyRange(_newNums, 0, _nums); diff --git a/chapter_computational_complexity/time_complexity/index.html b/chapter_computational_complexity/time_complexity/index.html index 22d4af65b..2d2a1dd17 100644 --- a/chapter_computational_complexity/time_complexity/index.html +++ b/chapter_computational_complexity/time_complexity/index.html @@ -582,15 +582,15 @@