1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-14 02:09:56 +08:00

feat: 更新文档

This commit is contained in:
最近在学桌球
2023-08-30 17:04:20 +08:00
parent 952946ad38
commit 6a1567cd2e
34 changed files with 64 additions and 431 deletions

View File

@@ -7,8 +7,6 @@
* @LastEditTime: 2021-02-23 07:48:26
*/
// 基础结构体
define MaxSize 50;
@@ -60,7 +58,7 @@ bool ListDelete(SqList &L, int i, ElemType &e){
if(L.length >= MaxSize){
return false;
}
// 引用变量e赋值
e=L.data[i-1]
@@ -70,7 +68,7 @@ bool ListDelete(SqList &L, int i, ElemType &e){
L.data[j-1]=L.data[j];
}
// 此时表L中的表尾元素和倒数第二个元素值一样将表的长度-1
// 此时表L中的表尾元素和倒数第二个元素值一样将表的长度-1
// 表长度减1
L.length--;