This commit is contained in:
krahets
2023-08-20 14:52:31 +08:00
parent 44a8568356
commit 68e11cfa34
40 changed files with 239 additions and 235 deletions

View File

@@ -1082,7 +1082,7 @@ comments: true
<p align="center"> 图:基于数组实现栈的入栈出栈操作 </p>
由于入栈的元素可能会源源不断地增加,因此我们可以使用动态数组,这样就无自行处理数组扩容问题。以下为示例代码。
由于入栈的元素可能会源源不断地增加,因此我们可以使用动态数组,这样就无自行处理数组扩容问题。以下为示例代码。
=== "Java"