diff --git a/README.md b/README.md index 9787172..3e593cb 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,4 @@ - -

- -

- -

- - - - - - - - - -

- - ## 写最前面 > `408CSFamily` 我的理解是:408计算机专业课”全家桶“,而408相信考研er都知道计算机考研专业课代码;在最新的高校计算机研究生招考中,已经越来越多的学校改考408。可见408所涉及到的专业课举足轻重的地位;不论是在考研或者找工作,我相信408的专业基础必定是难以避免的,所以话不多说、形势复杂,唯一能做的就是不停的学习、巩固基础知识,加油! > @@ -28,23 +10,21 @@ 2. 建议结合思维导图进行学习 -## 在线阅读 +### 在线浏览 + +- 稳定版: -https://408.142vip.cn 网站无法访问时,建议通过科学上网访问备用网络 -- Github: https://142vip.github.io/408CSFamily -- Netlify: https://408-family.netlify.app -- Vercel: https://408-family.vercel.app +- Github: +- Netlify: +- Vercel: - - - -## 思维导图【MD文档版本】 +### 思维导图【MD文档版本】 > 主要是关键知识,更新优化中... @@ -116,16 +96,16 @@ https://408.142vip.cn - [零碎知识补充](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485549&idx=2&sn=5282cd006b6c33e4bfe992298602e053&chksm=fcdfb1e1cba838f743a335bad530cf415eef57a417b807257d8ed6983047c2d57d5552b34cb0&token=1697862929&lang=zh_CN#rd) -#### [栈和队列](/数据结构/栈和队列/Readme.md) +#### [栈和队列](Readme.md) -- [栈的基本概念和基本操作](/数据结构/栈和队列/1.栈的基本概念和基本操作.md) -- [栈的顺序存储结构](/数据结构/栈和队列/2.栈的顺序存储结构.md) -- [栈的链式存储结构](/数据结构/栈和队列/3.栈链式存储结构.md) -- [队列的基本概念和基础操作](/数据结构/栈和队列/4.队列的基本概念和基础操作.md) -- [队列的顺序存储](/数据结构/栈和队列/5.队列的顺序存储结构.md) -- [队列的链式存储](/数据结构/栈和队列/6.队列的链式存储结构.md) -- [栈和队列的应用](/数据结构/栈和队列/栈和队列的应用.md) -- [特殊矩阵的压缩存储](/数据结构/栈和队列/8.特殊矩阵的压缩存储.md) +- [栈的基本概念和基本操作](1.栈的基本概念和基本操作.md) +- [栈的顺序存储结构](2.栈的顺序存储结构.md) +- [栈的链式存储结构](3.栈链式存储结构.md) +- [队列的基本概念和基础操作](4.队列的基本概念和基础操作.md) +- [队列的顺序存储](5.队列的顺序存储结构.md) +- [队列的链式存储](6.队列的链式存储结构.md) +- [栈和队列的应用](栈和队列的应用.md) +- [特殊矩阵的压缩存储](8.特殊矩阵的压缩存储.md) #### 树与二叉树 @@ -539,69 +519,102 @@ https://408.142vip.cn - 有安全相关工作背景者优先,有大型网站架构经验者优先,具备全栈/跨端开发能力者优先。 --> - -## 赞赏支持 - -**赞赏过的一定要微信跟我说呀!!!!!!** +## 赞赏列表 - - - -
- - - -
- - -## 联系我 - - -有任何问题或建议,欢迎微信`骚扰`,商务合作请备注! - -
- -
- - -## 鸣谢 - - -以下排名不分先后! +以下排名不分先后! [传送门→]() **赞赏过的一定要微信跟我说呀!!!!!!**
- + - + +
-## 赞助列表 -以下排名不分先后! +## 赞助商 + +**以下排名不分先后! 还木有收到赞助,哈哈哈,先留坑** + + + + +## 联系作者 + +若系列文章对你有所帮助,欢迎订阅公众号或微信”骚扰“,获取更多内容。**商务合作请备注来意** + +
+
+ + 关注公众号 + 联系作者 +
+
+ +
+ +交流/加群/互看朋友圈 +当然:**聊天 /提问 /建议 /提需求** 可以在本公众号直接**私信**,后台可以看到,有时间即会回复,偶尔的延迟和疏漏还请小伙伴们谅解,蟹蟹。 -## 公众号 - -- 相逢不用忙归去,明日黄花蝶也愁.... - -- 若系列文章对你有所帮助,不如来公众号交个朋友吧. - - - - - -

- -

- diff --git a/code/ds/BinaryInsertSort.cpp b/code/ds/BinaryInsertSort.cpp new file mode 100644 index 0000000..a1ef8ab --- /dev/null +++ b/code/ds/BinaryInsertSort.cpp @@ -0,0 +1,43 @@ +/* + * @Description: 折半插入算法【伪代码】 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-04-15 18:27:59 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-27 12:19:13 + */ + +void BinaryInsertSort(ElemType Arr[],int n){ + int i,j,lowIndex,heightIndex,midIndex; + + for(i=2;j<=n;i++){ + // 将待排序的元素暂存在Arr[0]上 + Arr[0]=Arr[i]; + + lowIndex=1; // 左侧子表 折半查找起始位置 + heightIndex=i-1; // 左侧子表 折半查找结束位置 + + while(lowIndex<=heightIndex){ + + // 左侧有序子表的中间位置角标 + midIndex=(lowIndex+heightIndex)/2; + + if(Arr[midIndex].key>Arr[0].key){ + // 小于中间元素,插入位置在子表左侧 + heightIndex=mid-1 + }else{ + // 大于或者等于中间元素,插入位置在子表右侧 + lowIndex=midIndex+1; + } + } + + // 跳出循环需要(lowIndex>heightIndex),说明待插入位置的角标在heightIndex之后,为 heightIndex+1,此时需要将(heightIndex,i)之间的所有元素后移 + + for(j=i-1;j>heightIndex;--j){ + Arr[j+1]=Arr[j] + } + + // 后移完成后,将元素Arr[0]赋值到位置(hightIndex+1)上 + Arr[heightIndex+1]=Arr[0] + } +} diff --git a/code/ds/BinaryInsertSort.js b/code/ds/BinaryInsertSort.js new file mode 100644 index 0000000..7f6a267 --- /dev/null +++ b/code/ds/BinaryInsertSort.js @@ -0,0 +1,60 @@ +/* + * @Description: 折半插入排序【JavaScript版本】 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2021-03-27 12:35:17 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-27 12:50:00 + */ + + +/** + * 折半插入排序 + * @param {Array} arr 待排序数组 + * @param {int} len 数组长度 + */ +function binaryInsertSort(arr,len){ + + // 数组长度校验【非必须】 + + len=arr.length===len?len:arr.length + + + for(let i=1;ihighIndex;--j){ + arr[j+1]=arr[j] + } + arr[highIndex+1]=temp; + + } + + // 返回经过折半插入排序处理的有序数组 + return arr; +} + + + +const dealArr=[5,2,7,3,18,8,12,1] +console.log('插入排序前:',dealArr) +const sortResult=binaryInsertSort(dealArr,7) + +console.log('插入排序后:',sortResult) + diff --git a/code/ds/BubbleSort.cpp b/code/ds/BubbleSort.cpp new file mode 100644 index 0000000..9eafd90 --- /dev/null +++ b/code/ds/BubbleSort.cpp @@ -0,0 +1,59 @@ +/* + * @Description: 冒泡排序 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2021-03-31 08:24:18 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-04-06 07:26:15 + */ + + +void BubbleSwapSort(ElemType A[], int n){ + + for(i=0;ii;j--){ + if(A[j-1].key>A[j].key){ + + // 将两个元素A[j-1]、A[j]进行交换,有多种方法 + swap(A[j-1],A[j]) + // 确认已发生交换 + flag=true + } + } + + // 本趟遍历后没有发生交换,说明表已经有序 + if(flag==false){ + return ; + } + } +} + +/** + * 加减法实现两个元素值互换 + * + */ +void swap(int a, int b){ + // 此时a为两值的和 + a=a+b; + // 此时b的值为a + b=a-b + // 如何实现让a的值为b呢??此时a的值为b + a=a-b; +} + +/** + * 临时变量实现两个元素值的互换 + * + */ +void swap(int a,int b){ + int temp; + temp=a; + a=b; + b=temp +} + diff --git a/code/ds/BubbleSort.js b/code/ds/BubbleSort.js new file mode 100644 index 0000000..42c6d4f --- /dev/null +++ b/code/ds/BubbleSort.js @@ -0,0 +1,61 @@ +/* + * @Description: 冒泡排序【JavaScript版本】 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2021-04-06 07:26:59 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-04-06 08:01:19 + */ + + + +function BubbleSort (arr, len) { + // 校正数组的长度 + len = arr.length == len ? len : arr.length + + // 冒泡排序,让数组arr有序 + for (let i = 0; i < len - 1; i++) { + + let isSorted = false; + + // len个数组,进行len-1趟,即:一趟冒泡 + for (let j = len - 1; j > i; j--) { + // 注意:这里的for循环倒序是有讲究的,想象一下泡泡不都是网上升的么.... + if (arr[j - 1] > arr[j]) { + // 交换元素,始终让最小的元素往上走(冒泡) + const temp = arr[j - 1]; + arr[j - 1] = arr[j]; + arr[j] = temp + + // 需要冒泡 + isSorted = true + } + } + // 第一趟比较后,如果本身序列是有序的,就直接跳出循环 + if (isSorted === false) { + break; + } + } + + return arr +} + + +/** + * + * 加减法交换元素的值 + * 注意:JavaScript中使用需要考虑到作用域的问题 + * @param {int} a + * @param {int} b + */ +function swap (a, b) { + a = a + b; + b = a - b; + a = a - b; +} + + +const initArr = [1, 5, 8, 3, 2, 9, 16] +console.log(`冒泡排序前:${initArr}`) +const sortedArr = BubbleSort(initArr, 7); +console.log(`冒泡排序后:${sortedArr}`) \ No newline at end of file diff --git a/code/ds/LinkList.cpp b/code/ds/LinkList.cpp new file mode 100644 index 0000000..1d050fc --- /dev/null +++ b/code/ds/LinkList.cpp @@ -0,0 +1,155 @@ +/* + * @Description: 单链表 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2021-03-04 23:38:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-05 21:30:58 + */ + + + +/* + * @Description: 单链表头插法 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 23:38:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 23:39:16 + */ +LinkList CreateListWithStartNode(LinkList &L){ + + LNode *s; + int x; + L=(LinkList)malloc(sizeof(LNode)); // 创建头结点L + L->next=NULL; // 初始化空链表 + + // 控制台输入值 + scanf("%d",&x); + + // 输入9999 表示结束 + while(x!==9999){ + // 开辟新结点存储空间 + s=(LNode*)malloc(sizeof(LNode)); + // 结点数据域赋值 + s->data=x; + // 修改指针,新结点插入表中【注意:L->next为头结点的指针域】 + s->next=L->next; + L->next=s; + scanf("%d",&x); + } + + // 返回单链表 + return L; +} + + +/* + * @Description: 单链表尾插法 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 23:38:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 23:39:16 + */ +LinkList CreateListWithEndNode(LinkList &L){ + + + int x; // 输入结点值 + L=(LinkList)malloc(sizeof(LNode)); + LNode *s; // 新结点s + LNode *r=L; // r为尾指针 + + // 控制台输入值 + scanf("%d",&x); + + while(x!==9999){ + // 开辟新结点存储空间 + s=(LNode *)malloc(sizeof(LNode)); + + // 新结点s的数据域赋值为x + s->data=x; + // 单链表L的尾指针指向新的结点s + r->next=s; + + // 指针r指向新的表尾结点 + r=s; + + scanf("%d",&x); + } + + // 表尾指针置空【重要】 + r->next=NULL; + + // 返回单链表 + return L; + +} + +/* + * @Description: 单链表按序号查找 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 23:38:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 23:39:16 + */ +LNode *GetElem(LinkList L,int i){ + int j=1; // 查询计数,初始为1 + LNode *p=L->next; // 单链表头结点指针赋值给指针p + + + // 第0个元素,则指向头结点,返回头结点 + if(i==0){ + // 头结点包含数据域和指针域 + return L; + } + + // 不等于0,却小于1,则i为负数无效,直接返回NULL,查询结果空; + if(i<1){ + return NULL; + } + + // p存在且计数没有走到初始i的位置 + while(p&&jnext; + + // 计数标记+1 + j++; + } + + // 注意: 当p不存在时, 跳出循环,p=NULL; 当p存在但是j大于等于i,跳出循环,返回查找的结果,返回p + // 从跳出循环上来分析,p要么存在即:找到的结点元素,要么为空即NULL + + // 跳出循环,返回第i个结点的指针 + return p; + +} + +/* + * @Description: 单链表按值查找 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 23:38:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 23:39:16 + */ +LNode *LocateElem(LinkList L,ElemType e){ + + // 指针【哨兵】 + LNode *p=L->next; + // 从第1个结点开始查找数据域(data)为e的结点 + while(p!=NULL&&p->data!=e){ + // 无法匹配,指针后移 + p=p->next; + } + + // 注意:p为NULL的时候,说明单链表已经遍历的尾结点了,跳出循环,没有找到目标结点; + + // 查找到第1个匹配的结点,跳出循环,返回结点指针 + return p; + // +} + diff --git a/code/ds/LinkStack.cpp b/code/ds/LinkStack.cpp new file mode 100644 index 0000000..d13e89e --- /dev/null +++ b/code/ds/LinkStack.cpp @@ -0,0 +1,91 @@ +/* + * @Description: 链栈的相关操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-01-15 9:19:56 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-13 12:27:36 + */ + +// 链栈类型定义【基础】 +typedef struct LinkNode{ + ElemType data; // 栈元素结点数据域 + struct LinkNode *next; // 栈元素结点指针域 +} *LinkStack; + +// 更为详细的定义 + +typedef struct StackNode +{ + int data;//结点数据域 + struct StackNode* next;//结点指针域 +}StackNode,* Linktop; + +//链栈的数据结构 +typedef struct LinkStack +{ + Linktop top; //栈顶结点,定义了一个指向上个结构体的指针 + int count;//元素个数 +}LinkStack; + + +/* + * @Description: 基于单链表链栈的进栈操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 07:36:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 11:39:16 + */ +bool linkStackPushNode(LinkStack* linkStack,int e){ + + // 判断链栈是否存在 + if (!linkStack){ + //链栈不存在,无法进栈操作,返回false + return false; + } + // 开辟栈结点元素内存控件 + StackNode* node = (StackNode*)malloc(sizeof(StackNode)); + // 新结点指针域指向链表,即栈顶指针位置,元素加入链表 + node->next = linkStack->top; + // 新结点数据域赋值 + node->data = e; + // 元素进栈,移动栈顶指针,指向新入栈的元素 + linkStack->top = node; + // 链栈元素总数+1 + linkStack->count++; + //链栈入栈成功,返回true + return true; +} + + + + +/* + * @Description: 基于单链表链栈的出栈操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 23:38:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 23:39:16 + */ +bool linkStackPopNode(LinkStack* linkStack,int *e){ + // 判断链栈是否存在及是否为空 + if (!linkStack || linkStack->count==0){ + //出栈失败,返回false + return false; + } + // 获取栈顶元素结点 + StackNode* node = stack->top; + + // 结点元素数据域赋值给变量e + *e = linkStack->data; + // 移动栈顶指向,栈顶指针指向待出栈结点的后继结点 + linkStack->top = node->next; + // 变量e已被赋值,释放链栈出栈元素的内存控件 + free(node); + // 链栈元素个数-1 + linkStack->count--; + // 出栈成功,返回true. + return true; +} diff --git a/code/ds/LoopQueue.cpp b/code/ds/LoopQueue.cpp new file mode 100644 index 0000000..02dc1d6 --- /dev/null +++ b/code/ds/LoopQueue.cpp @@ -0,0 +1,56 @@ +/* + * @Description: 循环队列操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2019-09-27 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-18 23:52:10 + */ + + + +// 队列最大存储元素个数 +#define MaxSize 50 + +// 结构体定义 +typedef struct { + // 存放队列元素 + ElemType data[MaxSize]; + // 队头指针和队尾指针 + int front,rear; +} SqQueue; + + + + +// 入队算法 +// 尾插法:Q.data[Q.rear]=x;Q.rear=(Q.rear+1)%Maxsize;Q.tag=1 +// 队空条件:Q.front== Q.rear且Q.tag==0 +int EnLoopQueue(SqQueue &Q, ElemType x){ + if(Q.front==Q.rear&&Q.tag==1){ + return 0; + } + Q.data[Q.rear]=x; + Q.rear=(Q.rear+1)%MaxSize; + Q.tag=1; + return 1; +} + + + +// 出队算法 +// 头结点删除:x=Q.data[Q.front];Q.front=(Q.front +1)%Maxsize;Q.tag=0 +// 队满条件:Q.front == Q.rear且Q.tag=1 +// 注意:当删除之后链表为空时,还需增加一步,将尾指针指向头结点 +int DeLoopQueue(SqQueue &Q, ElemType &x){ + if (Q.front==Q.rear&&Q.tag==0){ + return 0; + } + x=Q.data[Q.front]; + Q.front=(Q.front+1)%MaxSize; + Q.tag=0; + return 1; +} + + + diff --git a/code/ds/QuickSort.cpp b/code/ds/QuickSort.cpp new file mode 100644 index 0000000..7eb0232 --- /dev/null +++ b/code/ds/QuickSort.cpp @@ -0,0 +1,47 @@ +/* + * @Description: 快速排序【伪代码】 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-23 08:23:20 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-04-08 21:51:28 + */ + + +void QuickSort(ElemType A[] , int low , int high){ + + // low > high 表角标越界,low=high 子表只有一个元素,不需要进行快排,已经有序 + if(low=pivot) --high + A[low]=A[high] // 比pivot小的都移到左表 注意--high 从后往前遍历 + + while(lowhigh 跳出循环后即找到能将当前表一分为二的pivotKey值 + A[low]=pivot + // 基准元素pivot对应最终的位置角标 + return low +} \ No newline at end of file diff --git a/code/ds/QuickSort.js b/code/ds/QuickSort.js new file mode 100644 index 0000000..d3813d1 --- /dev/null +++ b/code/ds/QuickSort.js @@ -0,0 +1,70 @@ +/* + * @Description: 快速排序【JavaScript版本】 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2021-04-08 08:20:35 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-04-08 21:50:12 + */ + + +/** + * 基于分治法思想,将数组进行快速排序 + * @param {Array} arr 待排序的数组 + * @param {int} low 数组低位角标 左指针 + * @param {int} high 数组高位角标 右指针 + * @returns + */ +function QuickSort(arr,low,high){ + + // low=high 说明只有一个元素,理解为有序,不做处理 + // low>high 说明左右指针已经重合,数组已经遍历完,需要跳出 + if(low= pivot ) --high; + arr[low]=arr[high] + + // 从左往右直到比pivot大跳出循环 + while(low=1;k=k/2){ + + // 增量子表进行直接插入排序 + for(i=k+1;i<=n;++i){ + + if(Arr[i].key0&&Arr[0].key=1;n/=2){ + + // // 步长为k,则对应分为k个组,分别对其进行 直接插入排序 + + for(i=1,i<=k;i++){ + + // 第一步: 对应组的元素找出来,组成新的待排序的数列 + // 第二步: 对待排序数列进行 直接插入排序 + + specialStraightInsertSort(ElemType Arr[], int n , int k , int i) + + } + + } + // 返回 + return Arr; +} + \ No newline at end of file diff --git a/code/ds/ShellSort.js b/code/ds/ShellSort.js new file mode 100644 index 0000000..7a2af34 --- /dev/null +++ b/code/ds/ShellSort.js @@ -0,0 +1,130 @@ +/* + * @Description: 希尔排序 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-02-21 08:07:13 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-28 11:37:29 + */ + + + +/** + * + * 数组的希尔排序 + * @param {Array} arr 待排序数组 + * @param {int} len 数组长度,可校验 + * @returns 返回已排序的数组,从小到大 + */ +function shellSort (arr, len) { + + // 校对数组长度 + len = arr.length === len ? len : arr.length + + // 注意处理浮点【向上取整】 防止空指针 + for (let increment = Math.floor(len / 2); increment >= 1; increment = Math.floor(increment / 2)) { + // 对每组数据,进行直接排序 + for (let groupIndex = 0; groupIndex < increment; ++groupIndex) { + + specialStraightInsertSort(arr, len, increment, groupIndex) + } + + } + + return arr +} + +/** + * 根据希尔排序的步长对分组进行直接插入排序处理 + * @param {Array} arr 排序数组 + * @param {int} len 数组长度 + * @param {int} increment 增量步长 + * @param {int} groupIndex 分组,第几个分组 + */ +function specialStraightInsertSort (arr, len, increment, groupIndex) { + len = arr.length === len ? len : arr.length + console.log(`数组长度:${len}----->当前步长:${increment}---->分组:${groupIndex}`) + + for(let eleStartIndex=groupIndex+increment;eleStartIndex=0&&arr[j]>temp;j-=increment){ + arr[j+increment]=arr[j] + } + arr[j+increment]=temp + } + + console.log('specialStraightInsertSort处理后:',arr) + return arr +} + + +/** + * 插入排序 + * @param{Array} arr 待排序的数组 + * @param{int} len 数组arr的长度,可以用arr.length()计算得到 + */ +function straightInsertSort (arr, len) { + // 重新确定数组长度 + len = arr.length === len ? len : arr.length; + + // 从第二个元素开始循环,共len-1次 + for (let i = 1; i < len; i++) { + + // 后面的额元素比前面的元素小,需要把前面大于哨兵元素有序序列,移动后面一位 + if (arr[i] < arr[i - 1]) { + let j; + // 哨兵元素 + const temp = arr[i]; + for (j = i - 1; arr[j] > temp; --j) { + // 后移 + arr[j + 1] = arr[j] + } + // 跳出循环逻辑,出现arr[j] > arr[j-1] + + // 哨兵即待排序的 + arr[j + 1] = temp + } + } + + return arr + +} + + +const dealArr = [5, 8, 2, 16, 3, 9, 1] +console.log('插入排序前:', dealArr) +const sortResult = shellSort(dealArr, 7) +console.log('插入排序后:', sortResult) + + +/** + * 简化的希尔排序 + * @param {Array} arr + * @returns 返回已排序号的数组,从小到大 + */ +function shellSortBetter (arr) { + var len = arr.length; + var increment = Math.floor(len / 2); + while (increment != 0) { + for (var i = increment; i < len; i++) { + var temp = arr[i] + for (var j = i - increment; j >= 0 && temp < arr[j]; j -= increment) { + arr[j + increment] = arr[j] + } + arr[j + increment] = temp; + } + increment = Math.floor(increment / 2) + } + return arr; +} + + +console.log('简化shellSortBetter希尔排序前:', dealArr) +const sortResultBetter = shellSortBetter(dealArr) +console.log('简化shellSortBetter希尔排序后:', sortResultBetter) \ No newline at end of file diff --git a/code/ds/SqList.cpp b/code/ds/SqList.cpp new file mode 100644 index 0000000..7b4a15f --- /dev/null +++ b/code/ds/SqList.cpp @@ -0,0 +1,80 @@ +/* + * @Description: 顺序表的基础操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2021-02-23 07:48:26 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-02-23 07:48:26 + */ + + + + +// 基础结构体 +define MaxSize 50; +typedef struct{ + ElemType data[MaxSize]; // ElemType 代表元素类型 int、string..... + int length; +}SqList + + + +bool ListInsert(SqList &L, int i, ElemType e){ + + // i非法 i=1 表头 i=L.length+1 表尾巴 + if(i<1||i>L.length+1){ + return false; + } + + // 存储空间满,无法插入 + if(L.length >= MaxSize){ + return false; + } + + // 遍历,将位置元素往后移动,注意从后往前循环,避免值被覆盖 + for(int j=L.length; j>=i;j--){ + L.data[j]=L.data[j-1]; + } + + // 此时,表L中的第i个元素和第i+1元素素值一样,将新元素存入i位置即可 + + // 第i个元素,对应的位置角标为i-1 + L.data[i-1]=e; + + // 表长度加1 + L.length++; + + // 返回插入成功 + return true; +} + + +bool ListDelete(SqList &L, int i, ElemType &e){ + + // i非法 i=1 表头 i=L.length+1 表尾巴 + if(i<1||i>L.length+1){ + return false; + } + + // 存储空间满,无法插入 + if(L.length >= MaxSize){ + return false; + } + + // 引用变量e赋值 + e=L.data[i-1] + + // 遍历,第i个元素后面的往前移动 + for(int j=i; j<=L.length;j++){ + // 从第i个元素开始,角标从i-1开始 + L.data[j-1]=L.data[j]; + } + + // 此时,表L中的表尾元素和倒数第二个元素值一样,将表的长度-1 + + // 表长度减1 + L.length--; + + // 返回删除成功 + return true; +} \ No newline at end of file diff --git a/code/ds/SqStack.cpp b/code/ds/SqStack.cpp new file mode 100644 index 0000000..eec974c --- /dev/null +++ b/code/ds/SqStack.cpp @@ -0,0 +1,81 @@ +/* + * @Description: 顺序栈的相关操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-07 11:15:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-13 12:30:18 + */ + + +// 定义栈中元素的最大个数 +# define MaxSize 50 + +// 结构体定义 +typedef struct{ + ElemType data[MaxSize]; // 存放栈中元素 + int top; // 栈顶指针 +}SqStack; + + +// 初始化 +void InitStack(&S){ + // 栈顶指针-1 + s.top=-1; +} + +// 栈空判断 +bool StackEmpty(S){ + if(S.top==-1){ + // 栈空 + return true; + }else{ + // 栈非空 + return false; + } +} + +// 进栈 +bool Push(SqStack &S,ElemType x){ + if(S.top==MaxSize-1){ + // 栈满,返回false,元素无法进行进栈操作 + return false; + }else{ + // 可进栈,栈顶指针+1,再元素入栈 + S.data[++S.top]=x; + + // 入栈成功 + return true; + } +} + + +// 出栈 +bool Pop(SqStack &S,ElemType &x){ + if(S.top==-1){ + // 栈空,无栈顶元素可出栈,返回false + return false; + }else{ + // 栈非空,先元素出栈,再进行指针-1 + x=S.data[S.top--]; + + // 出栈成功,返回true + return true; + } +} + +// 读(获取)栈顶元素 +bool GetTop(SqStack S,ElemType &x){ + + if(S.top==-1){ + // 栈空,无栈顶元素,返回false + return false; + }else{ + + // 通过栈顶指针,获取栈顶元素,赋值给变量x + x=S.data[S.top]; + + // 读取栈顶元素成功,返回true + return true; + } +} diff --git a/code/ds/StraightInsertSort.cpp b/code/ds/StraightInsertSort.cpp new file mode 100644 index 0000000..1827725 --- /dev/null +++ b/code/ds/StraightInsertSort.cpp @@ -0,0 +1,26 @@ +/* + * @Description: 直接插入排序【伪代码】 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2021-03-25 08:07:23 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-26 07:29:00 + */ +void straightInsertSort(ElemType A[], int n){ + int i,j; + + // 依次将前面的第2到第n个元素插入到前面的有序序列 + for(i=2;i<=n;i++){ + if(A[i].key< A[i-1].key){ + // 哨兵元素 + A[0]=A[i]; + // 循环向后挪动 + for(j=i-1;A[0].keytemp;--j){ + // 后移 + arr[j+1]=arr[j] + } + // 跳出循环逻辑,出现arr[j] > arr[j-1] + + // 哨兵即待排序的 + arr[j+1]=temp + } + } + + return arr + +} + +const dealArr=[5,2,7,3,18,8,12,1] +console.log('插入排序前:',dealArr) +const sortResult=straightInsertSort(dealArr,7) + +console.log('插入排序后:',sortResult) + + diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js deleted file mode 100644 index a1c0388..0000000 --- a/docs/.vuepress/config.js +++ /dev/null @@ -1,30 +0,0 @@ -import themeConfig from "./config/theme.config"; -import pluginsConfig from "./config/plugins.config"; - -// 用于区分base路径,是否nginx代理 -const PROXY_DOMAIN=process.env.PROXY_DOMAIN||false - -export default { - title: "计算机应试全家桶", - description: "磨刀不误砍柴工,读完硕士再打工", - base: PROXY_DOMAIN ? "/408CSFamily/":"/", - port: 4200, - head: [ - [ - "link", {rel: "icon", href: "/408_favicon.ico"} - ], - [ - // 百度统计 - 'script', {}, ` - var _hmt = _hmt || []; - (function() { - var hm = document.createElement("script"); - hm.src = "https://hm.baidu.com/hm.js?3515cc46ae60747b778140f0e5e22dfe"; - var s = document.getElementsByTagName("script")[0]; - s.parentNode.insertBefore(hm, s); - })();` - ] - ], - ...themeConfig, - ...pluginsConfig -} \ No newline at end of file diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts new file mode 100644 index 0000000..bee7149 --- /dev/null +++ b/docs/.vuepress/config.ts @@ -0,0 +1,61 @@ +import pluginsConfig from "./config/plugins.config"; +import themeConfig from "./config/theme.config"; +import {defineUserConfig} from "vuepress"; +import {fileURLToPath} from 'node:url' +import {path} from "@vuepress/utils"; +// @ts-ignore +const __dirname = path.dirname(fileURLToPath(import.meta.url)) + +// 用于区分base路径,是否nginx代理 +const PROXY_DOMAIN = process.env.PROXY_DOMAIN || false + + +export default defineUserConfig({ + title: "计算机应试全家桶", + description: "磨刀不误砍柴工,读完硕士再打工", + base: PROXY_DOMAIN ? "/408CSFamily/" : "/", + port: 4200, + head: [ + ["link", {rel: "icon", href: "/fight_favicon.ico"}], + // vercel统计 相关配置 + ['script', {type: 'text/javascript', src: '/_vercel/insights/script.js'}], + [ + "link", {rel: "icon", href: "/408_favicon.ico"} + ], + // 百度统计 + [ + 'script', {}, ` + var _hmt = _hmt || []; + (function() { + var hm = document.createElement("script"); + hm.src = "https://hm.baidu.com/hm.js?3515cc46ae60747b778140f0e5e22dfe"; + var s = document.getElementsByTagName("script")[0]; + s.parentNode.insertBefore(hm, s); + })();` + ] + ], + markdown: { + // todo 引入代码文件时的路径替换 + importCode: { + handleImportPath: (str) => { + if (str.includes('@code')) { + return str.replace(/^@code/, path.resolve(__dirname, '../../code/')) + } + if (str.includes('~@')) { + return str.replace(/^~@/, path.resolve(__dirname, '../../')) + } + return str + }, + }, + // md doc formatter headerDepth + headers: { + level: [2, 3, 4] + } + }, + // 主题配置 + ...themeConfig, + // 插件配置 + ...pluginsConfig, + shouldPrefetch: false, +}) + diff --git a/docs/.vuepress/config/constant.config.js b/docs/.vuepress/config/constant.config.ts similarity index 100% rename from docs/.vuepress/config/constant.config.js rename to docs/.vuepress/config/constant.config.ts diff --git a/docs/.vuepress/config/lang.config.ts b/docs/.vuepress/config/lang.config.ts new file mode 100644 index 0000000..629ce4b --- /dev/null +++ b/docs/.vuepress/config/lang.config.ts @@ -0,0 +1,83 @@ +import {ThemeLocaleData} from "vuepress-theme-hope"; + +/** + * 支持中文 + * 参考:https://theme-hope.vuejs.press/zh/config/i18n.html + */ +const localCN: ThemeLocaleData = { + lang: "zh-CN", + navbarLocales: { + langName: "简体中文", + selectLangAriaLabel: "选择语言", + }, + metaLocales: { + author: "作者", + date: "写作日期", + origin: "原创", + views: "访问量", + category: "分类", + tag: "标签", + readingTime: "阅读时间", + words: "字数", + toc: "标题大纲", + prev: "上一页", + next: "下一页", + lastUpdated: "上次编辑于", + contributors: "贡献者", + editLink: "编辑此页", + print: "打印", + }, + + blogLocales: { + article: "文章", + articleList: "文章列表", + category: "分类", + tag: "标签", + timeline: "时间轴", + timelineTitle: "昨日不在", + all: "全部", + intro: "个人介绍", + star: "收藏", + }, + + paginationLocales: { + prev: "上一页", + next: "下一页", + navigate: "跳转到", + action: "前往", + errorText: "请输入 1 到 $page 之前的页码!", + }, + + outlookLocales: { + themeColor: "主题色", + darkmode: "外观", + fullscreen: "全屏", + }, + + encryptLocales: { + iconLabel: "文章已加密", + placeholder: "输入密码", + remember: "记住密码", + errorHint: "请输入正确的密码", + }, + routeLocales: { + skipToContent: "跳至主要內容", + notFoundTitle: "访问的页面不存在,嘤嘤嘤", + notFoundMsg: [ + "这里什么也没有", + "我们是怎么来到这儿的?", + "这 是 四 零 四 !", + "看起来你访问了一个失效的链接", + ], + back: "返回", + home: "首页", + openInNewWindow: "新窗口打开", + }, +} + +/** + * 自定义语言,支持文案 + */ +export const langConfig = { + "/": localCN +} diff --git a/docs/.vuepress/config/navbar.ts b/docs/.vuepress/config/navbar.ts new file mode 100644 index 0000000..42ca84d --- /dev/null +++ b/docs/.vuepress/config/navbar.ts @@ -0,0 +1,72 @@ +export const navbar = [ + { + text: '首页', + link: '/' + }, + // { + // text: "算法恶补", + // children: [{ + // text: '习题狂刷', + // link: '/manuscripts/algorithm/topic_practice' + // }, { + // text: '刷题笔记', + // link: '/manuscripts/algorithm/algorithm_note' + // }, { + // text: '在线刷题', + // children: [{ + // text: '杭电OJ', link: 'http://acm.hdu.edu.cn/' + // }, + // { + // text: '牛客网', link: 'https://www.nowcoder.com/' + // }, { + // text: 'LeetCode', link: 'https://leetcode-cn.com/' + // }] + // }] + // }, + { + text: "数据结构", + link: "/manuscripts/ds" + }, + { + text: "操作系统", + link: "/manuscripts/os" + }, + { + text: "计算机组成原理", + link: "/manuscripts/ccp" + }, + + { + text: "计算机网络", + link: "/manuscripts/cn" + }, + { + text: '其他资料', + children: [{ + text: '考研相关', + children: [{ + text: '111', + link: '/333' + }] + }, { + text: "思维导图", + children: [{ + text: '数据结构', + link: '/note-map/ds-map' + }, { + text: '操作系统', + link: '/note-map/os-map' + }, { + text: '计算机组成原理', + link: '/note-map/ccp-map' + }, { + text: '计算机网络', + link: '/note-map/cn-map' + }] + }] + }, + { + text: "大事记", + link: "/big-event-history" + }, +]; diff --git a/docs/.vuepress/config/navbar/index.js b/docs/.vuepress/config/navbar/index.js deleted file mode 100644 index bab1cc1..0000000 --- a/docs/.vuepress/config/navbar/index.js +++ /dev/null @@ -1,71 +0,0 @@ -export default [ - { - text: '主页', - link: '/' - }, - { - text: "算法恶补", - children: [{ - text: '习题狂刷', - link: '/algorithm/topic_practice' - }, { - text: '刷题笔记', - link: '/algorithm/algorithm_note' - }, { - text: '在线刷题', - children: [{ - text: '杭电OJ', link: 'http://acm.hdu.edu.cn/' - }, - { - text: '牛客网', link: 'https://www.nowcoder.com/' - }, { - text: 'LeetCode', link: 'https://leetcode-cn.com/' - }] - }] - }, - { - text: "数据结构", - link: "/ds/basic_introduction" - }, - { - text: "操作系统", - link: "/os/" - }, - { - text: "计算机组成原理", - link: "/ccp/" - }, - - { - text: "计算机网络", - link: "/cn/" - }, { - text: '其他资料', - children: [{ - text: '考研相关', - children: [{ - text: '111', - link: '/333' - }] - }, { - text: "思维导图", - children: [{ - text: '数据结构', - link: '/note-map/ds-map' - }, { - text: '操作系统', - link: '/note-map/os-map' - }, { - text: '计算机组成原理', - link: '/note-map/ccp-map' - }, { - text: '计算机网络', - link: '/note-map/cn-map' - }] - }] - }, - { - text: "大事记", - link: "/big-event-history" - }, -]; diff --git a/docs/.vuepress/config/plugins.config.js b/docs/.vuepress/config/plugins.config.ts similarity index 87% rename from docs/.vuepress/config/plugins.config.js rename to docs/.vuepress/config/plugins.config.ts index b0f100a..4e108fe 100644 --- a/docs/.vuepress/config/plugins.config.js +++ b/docs/.vuepress/config/plugins.config.ts @@ -8,7 +8,7 @@ export default { // 为分类和标签添加索引 customFields: [ { - getter: (page) => page.frontmatter.category, + getter: (page:any) => page.frontmatter.category, formatter: "分类:$content", }, { diff --git a/docs/.vuepress/config/sidebar.ts b/docs/.vuepress/config/sidebar.ts new file mode 100644 index 0000000..ce229e8 --- /dev/null +++ b/docs/.vuepress/config/sidebar.ts @@ -0,0 +1,13 @@ +import {algorithmSidebar} from "../../manuscripts/algorithm/algorithm.sidebar"; +import {dsSidebar} from "../../manuscripts/ds/ds.sidebar"; +import {cppSidebar} from "../../manuscripts/ccp/cpp.sidebar"; +import osSidebar from "../../manuscripts/os/os.sidebar"; + +export const sidebar = { + "/ds": dsSidebar, + "/ds/coding": algorithmSidebar, + "/manuscripts/ds":dsSidebar, + "/manuscripts/os":osSidebar, + "/manuscripts/ccp":cppSidebar, + "/manuscripts/cn":algorithmSidebar, +} \ No newline at end of file diff --git a/docs/.vuepress/config/sidebar/cpp.sidebar.js b/docs/.vuepress/config/sidebar/cpp.sidebar.js deleted file mode 100644 index 1069a7f..0000000 --- a/docs/.vuepress/config/sidebar/cpp.sidebar.js +++ /dev/null @@ -1,2 +0,0 @@ -export default[ -] \ No newline at end of file diff --git a/docs/.vuepress/config/sidebar/ds.sidebar.js b/docs/.vuepress/config/sidebar/ds.sidebar.js deleted file mode 100644 index df1b4f5..0000000 --- a/docs/.vuepress/config/sidebar/ds.sidebar.js +++ /dev/null @@ -1,80 +0,0 @@ -export default [ - { - text: '基础入门', - link: "/ds/basic-introduction", - collapsible: false, - children: [{ - text: '1.1 基本概念', - link: '/ds/basic-introduction/1.basic_concepts.md' - }, { - text: '1.2 数据结构三要素', - link: '/ds/basic-introduction/2.three_elements_of_data_structure.md' - }, { - text: '1.3 算法和算法评价', - link: '/ds/basic-introduction/3.algorithm_and_algorithm_evaluation.md' - }], - }, - { - text: '线性表', - collapsible: true, - link: "/ds/linear-table", - children: [{ - text: '2.1 基础概念和操作', - link: '/ds/linear-table/1.basic_concept_and_operation.md' - }, { - text: '2.2 线性表的顺序表示', - link: '/ds/linear-table/2.sequential_representation.md' - }, { - text: '2.3 基础概念和操作', - link: '/ds/linear-table/3.chain_representation.md' - }, { - text: '2.4 基础概念和操作', - link: '/ds/linear-table/4.double_linked_list.md' - }, { - text: '2.5 基础概念和操作', - link: '/ds/linear-table/5.circular_list.md' - }, { - text: '2.6 基础概念和操作', - link: '/ds/linear-table/6.static_linked_list.md' - }, { - text: '2.7 基础概念和操作', - link: '/ds/linear-table/7.comparison_of_sequential_list_and_linked_list.md' - }, { - text: '2.8 存储结构的选取', - link: '/ds/linear-table/8.selection_of_storage_structure.md' - }, { - text: '2.9 零碎知识补充', - link: '/ds/linear-table/9.piecemeal_knowledge_supplement.md' - }], - }, - { - text: "栈和队列", - link: "/ds/栈和队列/", - collapsible: true, - children: [{ - text: '3.1 栈的基本概念和基本操作', - link: '/ds/栈和队列/1.栈的基本概念和基本操作.md' - }, { - text: '3.2 栈的顺序存储结构', - link: '/ds/栈和队列/2.栈的顺序存储结构.md' - }, { - text: '3.3 栈的基本概念和基本操作', - link: '/ds/栈和队列/1.栈的基本概念和基本操作.md' - }, { - text: '3.4 栈的基本概念和基本操作', - link: '/ds/栈和队列/1.栈的基本概念和基本操作.md' - }, { - text: '3.5 栈的基本概念和基本操作', - link: '/ds/栈和队列/1.栈的基本概念和基本操作.md' - }, { - text: '3.6 栈的基本概念和基本操作', - link: '/ds/栈和队列/1.栈的基本概念和基本操作.md' - }, { - text: '3.7 栈和队列的应用', - link: '/ds/栈和队列/7.栈和队列的应用.md' - }, { - text: '3.8 特殊矩阵的压缩存储', - link: '/ds/栈和队列/8.特殊矩阵的压缩存储.md' - }] - } - ] \ No newline at end of file diff --git a/docs/.vuepress/config/sidebar/index.js b/docs/.vuepress/config/sidebar/index.js deleted file mode 100644 index ef16360..0000000 --- a/docs/.vuepress/config/sidebar/index.js +++ /dev/null @@ -1,7 +0,0 @@ -import dsSidebar from "./ds.sidebar"; -import algorithmSidebar from "./algorithm.sidebar"; - -export default{ - "/ds": dsSidebar, - "/ds/coding": algorithmSidebar -}; diff --git a/docs/.vuepress/config/theme.config.js b/docs/.vuepress/config/theme.config.ts similarity index 88% rename from docs/.vuepress/config/theme.config.js rename to docs/.vuepress/config/theme.config.ts index 31e3c99..172b6b1 100644 --- a/docs/.vuepress/config/theme.config.js +++ b/docs/.vuepress/config/theme.config.ts @@ -1,23 +1,26 @@ -import {hopeTheme} from "vuepress-theme-hope"; -import navbar from "./navbar"; -import sidebar from "./sidebar"; import {FOOTER_HTML_INFO} from "./constant.config"; +import {hopeTheme} from "vuepress-theme-hope"; +import {langConfig} from "./lang.config"; +import {navbar} from "./navbar"; +import {sidebar} from "./sidebar"; /** * hope主题配置 * 参考:https://theme-hope.vuejs.press/zh/config/ */ + export default { theme: hopeTheme({ + locales: langConfig, darkmode:"toggle", // 支持全屏 - // fullscreen: true, - // 纯净模式 + fullscreen: true, + // 纯净模式s // pure: true, print: false, // 打印按钮 hostname:'https://408.142vip.cn', author:{ - name:'ChuFan', + name:'Chu Fan', email:'fairy_408@2925.com', url:'https://www.142vip.cn' }, @@ -45,7 +48,7 @@ export default { intro:'', roundAvatar:true, timeline:"时间轴的顶部文字", - articleInfo:"", + // articleInfo:"", // sidebarDisplay:"always", medias:{ "BiliBili": "https://space.bilibili.com/350937042?spm_id_from=333.1007.0.0" diff --git a/docs/.vuepress/public/assets/image_code/official_wechat_code.png b/docs/.vuepress/public/assets/image_code/official_wechat_code.png deleted file mode 100644 index ea68a5b..0000000 Binary files a/docs/.vuepress/public/assets/image_code/official_wechat_code.png and /dev/null differ diff --git a/docs/.vuepress/public/assets/image_code/wechat_donate_code.jpeg b/docs/.vuepress/public/assets/image_code/wechat_donate_code.jpeg deleted file mode 100644 index 3d1a312..0000000 Binary files a/docs/.vuepress/public/assets/image_code/wechat_donate_code.jpeg and /dev/null differ diff --git a/docs/.vuepress/public/test.png b/docs/.vuepress/public/test.png deleted file mode 100644 index 183af70..0000000 Binary files a/docs/.vuepress/public/test.png and /dev/null differ diff --git a/docs/.vuepress/styles/index.scss b/docs/.vuepress/styles/index.scss index 0ccd586..de10d92 100644 --- a/docs/.vuepress/styles/index.scss +++ b/docs/.vuepress/styles/index.scss @@ -1,175 +1,175 @@ -/* 此处自定义样式,对主题进行覆盖 */ - - //首页导航按钮 -.actions>a{ - margin-left: 5px; - margin-right: 5px; -} -// 隐藏 全文搜索 -.DocSearch-Logo{ - // display:none;不占位隐藏 - visibility:hidden; // 占位隐藏 -} -.DocSearch-Button-Keys{ - visibility:hidden -} -// 首页title描述 -.home .hero .description{ - max-width: fit-content; -} - -// 搜索框 -#docsearch-container>button{ - border-radius: 5px; -} - -.code-group__nav-tab-active{ - color:var(--c-brand) -} - -.open-info-div{ - text-align: center; - align-content: center; - a{ - margin: 5px; - } -} - - -// 全站主题色 -:root { - // brand colors - // --c-brand: #3eaf7c; - // --c-brand-light: #4abf8a; - - --c-brand: #4ce9ad; - --c-brand-light: #42b983; - - // background colors - --c-bg: #ffffff; - --c-bg-light: #f3f4f5; - --c-bg-lighter: #eeeeee; - --c-bg-navbar: var(--c-bg); - --c-bg-sidebar: var(--c-bg); - --c-bg-arrow: #cccccc; - - // text colors - --c-text: #2c3e50; - --c-text-accent: var(--c-brand); - --c-text-light: #3a5169; - --c-text-lighter: #4e6e8e; - --c-text-lightest: #6a8bad; - --c-text-quote: #999999; - - // border colors - --c-border: #eaecef; - --c-border-dark: #dfe2e5; - - // custom container colors - --c-tip: #42b983; - --c-tip-bg: var(--c-bg-light); - --c-tip-title: var(--c-text); - --c-tip-text: var(--c-text); - --c-tip-text-accent: var(--c-text-accent); - --c-warning: #e7c000; - --c-warning-bg: #fffae3; ---c-warning-title: #ad9000; ---c-warning-text: #746000; ---c-warning-text-accent: var(--c-text); ---c-danger: #cc0000; ---c-danger-bg: #ffe0e0; ---c-danger-title: #990000; ---c-danger-text: #660000; ---c-danger-text-accent: var(--c-text); ---c-details-bg: #eeeeee; - -// badge component colors ---c-badge-tip: var(--c-tip); ---c-badge-warning: var(--c-warning); ---c-badge-danger: var(--c-danger); - -// transition vars ---t-color: 0.3s ease; ---t-transform: 0.3s ease; - -// code blocks vars ---code-bg-color: #282c34; ---code-hl-bg-color: rgba(0, 0, 0, 0.66); ---code-ln-color: #9e9e9e; ---code-ln-wrapper-width: 3.5rem; - -// font vars ---font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, - Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; ---font-family-code: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; - -// layout vars ---navbar-height: 3.6rem; ---navbar-padding-v: 0.7rem; ---navbar-padding-h: 1.5rem; ---sidebar-width: 20rem; ---sidebar-width-mobile: calc(var(--sidebar-width) * 0.82); ---content-width: 740px; ---homepage-width: 960px; -} - -// plugin-back-to-top -.back-to-top { ---back-to-top-color: var(--c-brand); ---back-to-top-color-hover: var(--c-brand-light); -} - -// plugin-docsearch -.DocSearch { ---docsearch-primary-color: var(--c-brand); ---docsearch-text-color: var(--c-text); ---docsearch-highlight-color: var(--c-brand); ---docsearch-muted-color: var(--c-text-quote); ---docsearch-container-background: rgba(9, 10, 17, 0.8); ---docsearch-modal-background: var(--c-bg-light); ---docsearch-searchbox-background: var(--c-bg-lighter); ---docsearch-searchbox-focus-background: var(--c-bg); ---docsearch-searchbox-shadow: inset 0 0 0 2px var(--c-brand); ---docsearch-hit-color: var(--c-text-light); ---docsearch-hit-active-color: var(--c-bg); ---docsearch-hit-background: var(--c-bg); ---docsearch-hit-shadow: 0 1px 3px 0 var(--c-border-dark); ---docsearch-footer-background: var(--c-bg); -} - -// plugin-external-link-icon -.external-link-icon { ---external-link-icon-color: var(--c-text-quote); -} - -// plugin-medium-zoom -.medium-zoom-overlay { ---medium-zoom-bg-color: var(--c-bg); -} - -// plugin-nprogress -#nprogress { ---nprogress-color: var(--c-brand); -} - -// plugin-pwa-popup -.pwa-popup { ---pwa-popup-text-color: var(--c-text); ---pwa-popup-bg-color: var(--c-bg); ---pwa-popup-border-color: var(--c-brand); ---pwa-popup-shadow: 0 4px 16px var(--c-brand); ---pwa-popup-btn-text-color: var(--c-bg); ---pwa-popup-btn-bg-color: var(--c-brand); ---pwa-popup-btn-hover-bg-color: var(--c-brand-light); -} - -// plugin-search -.search-box { ---search-bg-color: var(--c-bg); ---search-accent-color: var(--c-brand); ---search-text-color: var(--c-text); ---search-border-color: var(--c-border); - ---search-item-text-color: var(--c-text-lighter); ---search-item-focus-bg-color: var(--c-bg-light); -} +///* 此处自定义样式,对主题进行覆盖 */ +// +// //首页导航按钮 +//.actions>a{ +// margin-left: 5px; +// margin-right: 5px; +//} +//// 隐藏 全文搜索 +//.DocSearch-Logo{ +// // display:none;不占位隐藏 +// visibility:hidden; // 占位隐藏 +//} +//.DocSearch-Button-Keys{ +// visibility:hidden +//} +//// 首页title描述 +//.home .hero .description{ +// max-width: fit-content; +//} +// +//// 搜索框 +//#docsearch-container>button{ +// border-radius: 5px; +//} +// +//.code-group__nav-tab-active{ +// color:var(--c-brand) +//} +// +//.open-info-div{ +// text-align: center; +// align-content: center; +// a{ +// margin: 5px; +// } +//} +// +// +//// 全站主题色 +//:root { +// // brand colors +// // --c-brand: #3eaf7c; +// // --c-brand-light: #4abf8a; +// +// --c-brand: #4ce9ad; +// --c-brand-light: #42b983; +// +// // background colors +// --c-bg: #ffffff; +// --c-bg-light: #f3f4f5; +// --c-bg-lighter: #eeeeee; +// --c-bg-navbar: var(--c-bg); +// --c-bg-sidebar: var(--c-bg); +// --c-bg-arrow: #cccccc; +// +// // text colors +// --c-text: #2c3e50; +// --c-text-accent: var(--c-brand); +// --c-text-light: #3a5169; +// --c-text-lighter: #4e6e8e; +// --c-text-lightest: #6a8bad; +// --c-text-quote: #999999; +// +// // border colors +// --c-border: #eaecef; +// --c-border-dark: #dfe2e5; +// +// // custom container colors +// --c-tip: #42b983; +// --c-tip-bg: var(--c-bg-light); +// --c-tip-title: var(--c-text); +// --c-tip-text: var(--c-text); +// --c-tip-text-accent: var(--c-text-accent); +// --c-warning: #e7c000; +// --c-warning-bg: #fffae3; +//--c-warning-title: #ad9000; +//--c-warning-text: #746000; +//--c-warning-text-accent: var(--c-text); +//--c-danger: #cc0000; +//--c-danger-bg: #ffe0e0; +//--c-danger-title: #990000; +//--c-danger-text: #660000; +//--c-danger-text-accent: var(--c-text); +//--c-details-bg: #eeeeee; +// +//// badge component colors +//--c-badge-tip: var(--c-tip); +//--c-badge-warning: var(--c-warning); +//--c-badge-danger: var(--c-danger); +// +//// transition vars +//--t-color: 0.3s ease; +//--t-transform: 0.3s ease; +// +//// code blocks vars +//--code-bg-color: #282c34; +//--code-hl-bg-color: rgba(0, 0, 0, 0.66); +//--code-ln-color: #9e9e9e; +//--code-ln-wrapper-width: 3.5rem; +// +//// font vars +//--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, +// Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; +//--font-family-code: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; +// +//// layout vars +//--navbar-height: 3.6rem; +//--navbar-padding-v: 0.7rem; +//--navbar-padding-h: 1.5rem; +//--sidebar-width: 20rem; +//--sidebar-width-mobile: calc(var(--sidebar-width) * 0.82); +//--content-width: 740px; +//--homepage-width: 960px; +//} +// +//// plugin-back-to-top +//.back-to-top { +//--back-to-top-color: var(--c-brand); +//--back-to-top-color-hover: var(--c-brand-light); +//} +// +//// plugin-docsearch +//.DocSearch { +//--docsearch-primary-color: var(--c-brand); +//--docsearch-text-color: var(--c-text); +//--docsearch-highlight-color: var(--c-brand); +//--docsearch-muted-color: var(--c-text-quote); +//--docsearch-container-background: rgba(9, 10, 17, 0.8); +//--docsearch-modal-background: var(--c-bg-light); +//--docsearch-searchbox-background: var(--c-bg-lighter); +//--docsearch-searchbox-focus-background: var(--c-bg); +//--docsearch-searchbox-shadow: inset 0 0 0 2px var(--c-brand); +//--docsearch-hit-color: var(--c-text-light); +//--docsearch-hit-active-color: var(--c-bg); +//--docsearch-hit-background: var(--c-bg); +//--docsearch-hit-shadow: 0 1px 3px 0 var(--c-border-dark); +//--docsearch-footer-background: var(--c-bg); +//} +// +//// plugin-external-link-icon +//.external-link-icon { +//--external-link-icon-color: var(--c-text-quote); +//} +// +//// plugin-medium-zoom +//.medium-zoom-overlay { +//--medium-zoom-bg-color: var(--c-bg); +//} +// +//// plugin-nprogress +//#nprogress { +//--nprogress-color: var(--c-brand); +//} +// +//// plugin-pwa-popup +//.pwa-popup { +//--pwa-popup-text-color: var(--c-text); +//--pwa-popup-bg-color: var(--c-bg); +//--pwa-popup-border-color: var(--c-brand); +//--pwa-popup-shadow: 0 4px 16px var(--c-brand); +//--pwa-popup-btn-text-color: var(--c-bg); +//--pwa-popup-btn-bg-color: var(--c-brand); +//--pwa-popup-btn-hover-bg-color: var(--c-brand-light); +//} +// +//// plugin-search +//.search-box { +//--search-bg-color: var(--c-bg); +//--search-accent-color: var(--c-brand); +//--search-text-color: var(--c-text); +//--search-border-color: var(--c-border); +// +//--search-item-text-color: var(--c-text-lighter); +//--search-item-focus-bg-color: var(--c-bg-light); +//} diff --git a/docs/.vuepress/styles/palette.scss b/docs/.vuepress/styles/palette.scss index 085b4aa..4a9242b 100644 --- a/docs/.vuepress/styles/palette.scss +++ b/docs/.vuepress/styles/palette.scss @@ -1,2 +1,6 @@ // 主题色 -$theme-color: #2196f3; \ No newline at end of file +$theme-color: #2980B9; +$sidebar-width: 20rem; +$sidebar-mobile-width: 16rem; +$content-width: 75rem; +$home-page-width:80rem; \ No newline at end of file diff --git a/docs/big-event-history.md b/docs/big-event-history.md index 4244eb4..50836d0 100644 --- a/docs/big-event-history.md +++ b/docs/big-event-history.md @@ -1,5 +1,5 @@ -## 网站大事记 +# 网站大事记 > 有时间再梳理梳理吧.... diff --git a/docs/cn/Readme.md b/docs/cn/Readme.md deleted file mode 100644 index 524ba3e..0000000 --- a/docs/cn/Readme.md +++ /dev/null @@ -1,5 +0,0 @@ - - -## 计算机网络 - -doing \ No newline at end of file diff --git a/docs/ds/README11.md b/docs/ds/README11.md deleted file mode 100644 index 77ad324..0000000 --- a/docs/ds/README11.md +++ /dev/null @@ -1,1455 +0,0 @@ -[//]: # (---) - -[//]: # (title: null) - -[//]: # (date: 2021-03-07 23:04:24) - -[//]: # (permalink: /pages/c1bec1/) - -[//]: # (category: ) - -[//]: # ( - DataStructure) - -[//]: # (tag: ) - -[//]: # ( - ) - -[//]: # (---) - -[//]: # () -[//]: # () -[//]: # (# ) - -[//]: # () -[//]: # () -[//]: # (

) - -[//]: # ( ) - -[//]: # (

) - -[//]: # (

) - -[//]: # ( ) - -[//]: # ( ) - -[//]: # ( ) - -[//]: # () - -[//]: # () - -[//]: # () - -[//]: # () - -[//]: # () - -[//]: # () - -[//]: # (

) - -[//]: # () -[//]: # () -[//]: # (
) - -[//]: # ( 码云版 ) - -[//]: # ( ) - -[//]: # (
) - -[//]: # () -[//]: # () -[//]: # (## 写最前面) - -[//]: # () -[//]: # (> 这里是日常工作、学习、生活中总结的各类文章笔记,主要涉及开发技术总结记录,偶尔也会感慨万千,水一些无关技术的文章;若发现博客外链不能访问则可能博客设置修改过,请直接访问博客;所有内容会选择性的发表于**微信公众号、个人博客、掘金、CSDN ,实际内容以本仓库排版、校对为主。** 也会不定时同步到 **码云** 。) - -[//]: # (> **以下内容没有链接的代表尚未完成,大家善用快捷键Ctrl+F**) - -[//]: # (>) - -[//]: # (> 创建时间:2020年2月14日) - -[//]: # () -[//]: # () -[//]: # () -[//]: # (## 关于作者) - -[//]: # () -[//]: # () -[//]: # (- [个人项目整理](http://blog.142vip.cn/s/projects)) - -[//]: # (- [自我介绍]()) - -[//]: # () -[//]: # () -[//]: # (## 思维导图) - -[//]: # () -[//]: # () -[//]: # (> 内容同步与文档,可以结合思维导图对文档进行有效学习.相关目录的xmind文件为思维导图原文件) - -[//]: # () -[//]: # () -[//]: # (## 日常推荐) - -[//]: # () -[//]: # () -[//]: # (- [云服务器推荐](docs/recommend/云服务器推荐.md)) - -[//]: # (- [学习网站、使用工具](docs/recommend/学习网站、效率工具.md)) - -[//]: # (- [值得细读的技术文章推荐](docs/recommend/值得细读的技术文章推荐.md)) - -[//]: # () -[//]: # () -[//]: # (# 文章笔记) - -[//]: # () -[//]: # () -[//]: # (**注:无高亮有效访问链接的待完成/同步**) - -[//]: # () -[//]: # () -[//]: # (## 前端) - -[//]: # () -[//]: # () -[//]: # (> 前端技术百花齐放、层出不穷,个人认为要注重广度,学会看官方文档熟练操作即可;) - -[//]: # () -[//]: # () -[//]: # (#### CSS) - -[//]: # () -[//]: # () -[//]: # (> 依赖W3CSchool文档和日常整理,主要是对CSS常用操作和基础属性进行整理总结。不会过多深入) - -[//]: # () -[//]: # () -[//]: # (- [CSS开发规范](docs/css/CSS开发规范.md)) - -[//]: # () -[//]: # (- 样式属性) - -[//]: # () -[//]: # (- 页面布局) - -[//]: # () -[//]: # (- 移动端适配) - -[//]: # () -[//]: # ( ) -[//]: # () -[//]: # () -[//]: # (##### [基础教程](docs/css/基础教程)) - -[//]: # () -[//]: # () -[//]: # (##) - -[//]: # () -[//]: # () -[//]: # (#### JavaScript) - -[//]: # () -[//]: # () -[//]: # (> **本级目录下的JavaScript内容没有发表到[博客](http://blog.142vip.cn)上,建议对照[脑图](docs/javascript/README.md)在[JavaScript主目录](javascript)下学习**,依赖官方文档及自身对JavaScript语言的初步了解,进行的关于JavaScript知识整理,主要目的是复习基础概念、了解新特性、熟练ES6/7操作;整体相对来说由易到难,方便后续查阅学习~) - -[//]: # () -[//]: # () -[//]: # (##### 快速入门) - -[//]: # () -[//]: # () -[//]: # (- [简单介绍](docs/javascript/快速入门/javascript简单介绍.md)) - -[//]: # (- [快速了解](docs/javascript/快速入门/javascript快速入门.md)) - -[//]: # (- [JavasScript开发规范](docs/javascript/JavaScript开发规范.md)) - -[//]: # () -[//]: # () -[//]: # (##### 基础教程) - -[//]: # () -[//]: # () -[//]: # (- [语法与数据结构](docs/javascript/基础教程/javascript语法与数据结构.md)) - -[//]: # (- [循环与迭代](docs/javascript/基础教程/javascript循环与迭代.md)) - -[//]: # (- [流程控制与错误处理](docs/javascript/基础教程/javascript流程控制与错误处理.md)) - -[//]: # (- [表达式和运算符](docs/javascript/基础教程/javascript表达式和运算符.md)) - -[//]: # (- [函数和方法](docs/javascript/基础教程/javascript函数.md)) - -[//]: # (- [数字和日期](docs/javascript/基础教程/javascript数字和日期.md)) - -[//]: # (- [对象的使用](docs/javascript/基础教程/javascript对象的使用.md)) - -[//]: # (- [正则表达式](docs/javascript/基础教程/javascript正则表达式.md)) - -[//]: # (- [promise对象的使用](docs/javascript/基础教程/promise对象的使用.md)) - -[//]: # (- [modules模块](docs/javascript/基础教程/modules模块.md)) - -[//]: # () -[//]: # () -[//]: # (##### 中级教程) - -[//]: # () -[//]: # () -[//]: # (- [Promise对象](docs/javascript/中级教程/promise对象.md)) - -[//]: # (- [async函数](docs/javascript/中级教程/async函数.md)) - -[//]: # (- [class类](docs/javascript/中级教程/class类.md)) - -[//]: # () -[//]: # () -[//]: # (##### 高级教程) - -[//]: # () -[//]: # () -[//]: # (- [不一样的ajax](docs/javascript/高级教程/不一样的ajax.md)) - -[//]: # (- [什么是事件循环](docs/javascript/高级教程/什么是事件循环.md)) - -[//]: # () -[//]: # (- [JSON.stringify()的三个参数]()) - -[//]: # () -[//]: # () -[//]: # (##### 最后稻草) - -[//]: # () -[//]: # () -[//]: # (- [ES6、ES7、ES8、ES9、ES10的新特性](docs/javascript/最后稻草/ES6、ES7、ES8、ES9、ES10的新特性.md)) - -[//]: # (- [ES2020新特性](docs/javascript/最后稻草/ES2020新特性.md)) - -[//]: # (- [JavaScript 工具函数大全](docs/javascript/最后稻草/JavaScript工具函数大全.md)) - -[//]: # (- [常用函数方法整理](docs/javascript/最后稻草/常用函数方法整理.md)) - -[//]: # () -[//]: # () -[//]: # (#### JQuery) - -[//]: # () -[//]: # () -[//]: # (- [安装使用](docs/jquery/安装使用.md)) - -[//]: # (- [基本属性](docs/jquery/基本属性.md)) - -[//]: # () -[//]: # () -[//]: # (- Css样式) - -[//]: # () -[//]: # () -[//]: # (- 选择器) - -[//]: # () -[//]: # () -[//]: # (- 文档处理) - -[//]: # () -[//]: # () -[//]: # (- 筛选) - -[//]: # () -[//]: # () -[//]: # (- 事件) - -[//]: # () -[//]: # () -[//]: # (- 效果) - -[//]: # () -[//]: # () -[//]: # (- 事件对象) - -[//]: # () -[//]: # () -[//]: # (- 延迟对象) - -[//]: # () -[//]: # () -[//]: # (- 回调函数) - -[//]: # () -[//]: # () -[//]: # (- 其他整理) - -[//]: # () -[//]: # () -[//]: # (#### Vuejs) - -[//]: # () -[//]: # () -[//]: # (> 介绍基础、常用的vue功能,不会很深入的涉及到vue源码及原理) - -[//]: # () -[//]: # () -[//]: # (#### React) - -[//]: # () -[//]: # () -[//]: # (#### Nuxtjs) - -[//]: # () -[//]: # () -[//]: # (> Nuxtjs是在vue框架上进行封装的,主要是用来解决单体页面的服务端渲染问题,提供网站进行SEO优化的可能) - -[//]: # () -[//]: # () -[//]: # ([前端读写cookie]()) - -[//]: # () -[//]: # () -[//]: # (#### UI框架) - -[//]: # () -[//]: # () -[//]: # (> 市面上前端框架层出不穷,不同的技术栈依赖的UI框架也不尽相同,这里将会依据笔者使用的UI框架,以线上项目展示的方式,介绍用过的框架;) - -[//]: # () -[//]: # () -[//]: # (- Bootstrap ) - -[//]: # (- LayerUI) - -[//]: # (- Ant-design-vue) - -[//]: # (- iView-UI) - -[//]: # (- VantUI) - -[//]: # (- Element-UI) - -[//]: # () -[//]: # () -[//]: # (## 后端【Node】) - -[//]: # () -[//]: # () -[//]: # (> 相比前端,作为偏后端的开发者, 后端技术的学习则需要稳扎稳打、不断积累整理,在会用、能用、熟练的基础上,更应该学习其中的原理;所以若你为后端开发者,不论Java、Nodejs、Go等技术栈,对待下面将提及的微服务架构、容器技术、服务治理、高可用等都需要努力学习,抓住重点;) - -[//]: # (>) - -[//]: # (> 在面试面前,能力是不会说谎的,打铁还需自身硬,加油~) - -[//]: # () -[//]: # () -[//]: # (#### Express框架) - -[//]: # () -[//]: # () -[//]: # (- [框架概念简介](docs/express/框架介绍.md)) - -[//]: # (- [brew和tree的安装](docs/express/brew和tree的安装.md)) - -[//]: # (- 搭建express基础项目) - -[//]: # (- 安装) - -[//]: # (- 路由) - -[//]: # (- 静态文件) - -[//]: # (- 中间件) - -[//]: # (- 统一错误处理) - -[//]: # (- [express()函数](docs/express/express()函数.md)) - -[//]: # (- [application对象详解](docs/express/application对象详解.md)) - -[//]: # (- [request对象](docs/express/request对象.md)) - -[//]: # (- [respon对象]()) - -[//]: # (- [router对象]()) - -[//]: # (- 数据库集成) - -[//]: # (- MVC分层) - -[//]: # (- [pm2进程管理](docs/express/pm2进程管理.md)) - -[//]: # (- 分环境部署上线) - -[//]: # () -[//]: # () -[//]: # (#### Koa框架) - -[//]: # () -[//]: # () -[//]: # (- koa介绍) - -[//]: # (- 手把手搭建第一个koa项目) - -[//]: # (- 应用(Application)) - -[//]: # (- 中间件(Middleware)) - -[//]: # (- 上下文(Context)) - -[//]: # (- 请求(Request)) - -[//]: # (- 响应(Response)) - -[//]: # () -[//]: # () -[//]: # (#### Eggjs框架) - -[//]: # () -[//]: # () -[//]: # (##### 基础篇) - -[//]: # () -[//]: # () -[//]: # (- [第一部分:Git概述](docs/eggjs/git-README.md)) - -[//]: # () -[//]: # () -[//]: # (* [1.1 下载和安装](docs/eggjs/git-download.md)) - -[//]: # ( * [1.2 基本配置](docs/eggjs/git-config.md)) - -[//]: # ( * [1.3 常用命令](docs/eggjs/git-dns.md)) - -[//]: # ( * [1.4 GitHub简单使用](docs/eggjs/git-github.md)) - -[//]: # ( * [1.5 GitBook简单使用](https://mp.weixin.qq.com/s/Wn_IZ6K4eqh1PtomRtqdqg)) - -[//]: # ( * [1.5.1 Typora简介](docs/eggjs/git-typora.md)) - -[//]: # ( * [1.5.2 MarkDown语法](docs/eggjs/git-markdown.md)) - -[//]: # ( * [1.6 码云和GitHub的选择](docs/eggjs/git-choice.md)) - -[//]: # () -[//]: # () -[//]: # (- [第二部分:数据库概述](docs/eggjs/mysql-README.md)) - -[//]: # () -[//]: # () -[//]: # ( - [2.1 下载和安装](docs/eggjs/mysql-download.md)) - -[//]: # ( - [2.2 连接数据库](docs/eggjs/git-connect.md)) - -[//]: # ( - [2.3 CURD操作](docs/eggjs/mysql-curd.md)) - -[//]: # ( - [2.4 Redis缓存](docs/eggjs/mysql-redis.md)) - -[//]: # ( - [2.4.1 redis安装](docs/eggjs/mysql-redis-install.md)) - -[//]: # ( - [2.4.2 redis常用指令](docs/eggjs/mysql-redis-dns.md)) - -[//]: # ( - [2.5 可视化管理](docs/eggjs/mysql-redis-view.md)) - -[//]: # () -[//]: # () -[//]: # (##### 入门篇) - -[//]: # () -[//]: # () -[//]: # (- [第一部分:Egg框架快速入门](docs/eggjs/egg-README.md)) - -[//]: # () -[//]: # () -[//]: # (- [1.1 基础功能](docs/eggjs/egg-base.md)) - -[//]: # ( - [1.1.1 接口参数获取](docs/eggjs/egg-request-params.md)) - -[//]: # ( - [1.1.2 Egg内置对象 ](docs/eggjs/egg-object.md)) - -[//]: # ( - [1.1.3 Config配置](docs/eggjs/egg-config.md)) - -[//]: # ( - [1.1.4 Egg生命周期](docs/eggjs/egg-life.md)) - -[//]: # ( - [1.1.5 中间件理解](docs/eggjs/egg-middleware.md)) - -[//]: # ( - [1.1.6 Router路由分发](docs/eggjs/egg-router.md)) - -[//]: # ( - [1.1.7 Controller控制器](docs/eggjs/egg-controller.md)) - -[//]: # ( - [1.1.8 Service服务](docs/eggjs/egg-service.md)) - -[//]: # ( - [1.1.9 常用插件](docs/eggjs/egg-plugin.md)) - -[//]: # (- [1.2 核心功能](docs/eggjs/egg-core.md)) - -[//]: # ( - [1.2.1 日志输出](docs/eggjs/egg-logger.md)) - -[//]: # ( - [1.2.2 定时任务](docs/eggjs/egg-schedule.md)) - -[//]: # ( - [1.2.2 HttpClient网络请求](docs/eggjs/egg-httpclient.md)) - -[//]: # ( - [1.2.3 Cookie的基本使用](docs/eggjs/egg-cookies.md)) - -[//]: # ( - [1.2.4 Session的基本使用](docs/eggjs/egg-session.md)) - -[//]: # ( - [1.2.5 统一异常-错误处理](docs/eggjs/egg-try-catch.md)) - -[//]: # ( - [1.2.6 CSRF防范和XSS攻击](docs/eggjs/egg-csrf-xss.md)) - -[//]: # ( - [1.2.7 RESTful API接口风格](docs/eggjs/egg-restful.md)) - -[//]: # () -[//]: # () -[//]: # (- [第二部分:插件开发](docs/eggjs/plugin-README.md)) - -[//]: # () -[//]: # () -[//]: # ( - [2.1 egg-validate参数校验](docs/eggjs/plugin-egg-validate.md)) - -[//]: # ( - [2.2 egg-view-ejs页面渲染](docs/eggjs/plugin-egg-view.ejs.md)) - -[//]: # ( - [2.3 egg-redis缓存](docs/eggjs/plugin-egg-redis.md)) - -[//]: # ( - [2.4 egg-mysql](docs/eggjs/plugin-egg-mysql.md)) - -[//]: # ( - [2.5 egg-sequelize](docs/eggjs/plugin-egg-sequelize.md)) - -[//]: # ( - [2.6 egg-socket.io即时通讯](docs/eggjs/plugin-egg-socket.io.md)) - -[//]: # () -[//]: # () -[//]: # (##### 代码实战篇) - -[//]: # () -[//]: # () -[//]: # (- [第一部分:常用代码](docs/eggjs/project-README-CODE.md)) - -[//]: # () -[//]: # () -[//]: # ( - [1.1 图片前端在线剪辑](docs/eggjs/project-images-cropper.md)) - -[//]: # ( - [1.2 文件上传后台处理](docs/eggjs/project-upload.md)) - -[//]: # ( - [1.3 MD5加密-解密算法](docs/eggjs/project-md5.md)) - -[//]: # ( - [1.4 Egg Jwt加密和校验](docs/eggjs/project-token.md)) - -[//]: # (- [第二部分:项目简介](docs/eggjs/project-README-INTRODUCE.md)) - -[//]: # () -[//]: # () -[//]: # ( - [2.1 基于OAuth2的统一认证中心系统](docs/eggjs/project-ssoCenterSystem.md)) - -[//]: # ( - [2.2 常用前后端分页比较与实现](docs/eggjs/project-pagenation.md)) - -[//]: # ( - [2.3基于Spring Boot实现的个人博客](docs/eggjs/project-spring-boot-blog.md)) - -[//]: # ( - [2.4 基于Yapi搭建的接口管理系统](docs/eggjs/project-webapi.md)) - -[//]: # ( - [2.5 GitBook开源笔记总结站点搭建](docs/eggjs/project-gitbook.md)) - -[//]: # ( - [2.6 个人网站及接口服务搭建搭建](docs/eggjs/project-142vip.cn.md)) - -[//]: # (- [第三部分:手把手搭建基础Egg开发框架](docs/eggjs/egg-egg-example.md)) - -[//]: # () -[//]: # () -[//]: # (#### Nestjs框架) - -[//]: # () -[//]: # () -[//]: # (> Nestjs框架推崇typescript语法,并且友好的兼容express框架,因此在学习Nestjs框架之前,请务必先熟悉express框架相关操作并进行typescript入门;在一定程度上typescript和面向对象语言Java、Net等很相似,如果你之前有JavaScript和Java的基础,那么应该恭喜你,你的学习速度将会倍速提高) - -[//]: # () -[//]: # () -[//]: # (- [核心基础概念](nestjs/nestjs核心基础概念.md)) - -[//]: # (- [项目创建初始化入门](nestjs/nestjs项目创建初始化入门.md)) - -[//]: # (- [整合swagger快速生成api文档](nestjs/nestjs整合swagger快速生成api文档.md)) - -[//]: # (- [接口路由请求传参](nestjs/nestjs接口路由请求传参.md)) - -[//]: # () -[//]: # () -[//]: # (## 算法) - -[//]: # () -[//]: # () -[//]: # (- 算法分析) - -[//]: # () -[//]: # () -[//]: # (#### 查找) - -[//]: # () -[//]: # () -[//]: # (- 顺序查找) - -[//]: # (- 折半查找) - -[//]: # (- 分块查找) - -[//]: # (- B树和B+树) - -[//]: # (- 散列(Hash)表) - -[//]: # (- 字符串模式匹配(KPM)) - -[//]: # () -[//]: # () -[//]: # (#### 排序) - -[//]: # () -[//]: # () -[//]: # (- 插入排序) - -[//]: # (- 交换排序) - -[//]: # (- 选择排序) - -[//]: # (- 归并排序) - -[//]: # (- 基数排序) - -[//]: # (- 内部排序比较) - -[//]: # (- 外部排序比较) - -[//]: # () -[//]: # () -[//]: # (#### LeetCode刷题) - -[//]: # () -[//]: # () -[//]: # (## 数据库) - -[//]: # () -[//]: # () -[//]: # (> 主讲数据库基础知识,结合node的简单使用,相关的部署方案参照下方的文档) - -[//]: # () -[//]: # () -[//]: # (#### MySQL) - -[//]: # () -[//]: # () -[//]: # (- [【服务器版】MySQL的安装部署](https://mp.weixin.qq.com/s/U1OUZYHEChFDx03FvgbMHA)) - -[//]: # (- [MySQL优化之Explain参数说明](docs/mysql/MySQL优化之Explain参数说明.md)) - -[//]: # (- 索引) - -[//]: # (- sql优化) - -[//]: # (- [基于GTID主从复制的原理和基础配置](docs/mysql/基于GTID主从复制的原理和基础配置.md)) - -[//]: # (- [MySQL日志类型把我难哭了,你学废了吗?](docs/mysql/mysql日志比较.md)) - -[//]: # () -[//]: # () -[//]: # (#### Redis) - -[//]: # () -[//]: # () -[//]: # (> 将围绕redis基础概念、使用场景、使用方式、简单部署等方面 展开介绍,[主目录](redis)下有自己觉得还不错PDF文档~) - -[//]: # () -[//]: # () -[//]: # (- [key命名规范与建议](docs/redis/key命名规范与建议.md)) - -[//]: # (- [redis开发使用规范](docs/redis/redis开发使用规范.md)) - -[//]: # (- [redis基础介绍](docs/redis/redis基础介绍.md)) - -[//]: # (- [redis的简单安装和部署](https://mp.weixin.qq.com/s/Xe-ZDf2kgUWfYSkuULAdlw)) - -[//]: # (- [官方默认配置模板](code/docs/redis/redis-default.conf)) - -[//]: # (- 数据类型) - -[//]: # (- [redis简单主从集群部署-docker方式](docs/docs/redis/redis集群部署.md)) - -[//]: # (- [memCache与Redis比较](docs/redis/memCache与Redis.md)) - -[//]: # () -[//]: # () -[//]: # (#### Mongo) - -[//]: # () -[//]: # () -[//]: # (- 基本介绍) - -[//]: # (- 安装部署) - -[//]: # (- 简单使用) - -[//]: # (- Node下的CURD操作) - -[//]: # () -[//]: # () -[//]: # (## 服务部署) - -[//]: # () -[//]: # () -[//]: # (#### nginx) - -[//]: # () -[//]: # () -[//]: # (- [nginx安装,普通安装 Or Docker搞定?](docs/nginx/nginx基础部署.md)) - -[//]: # (- [手把手nginx基础入门]()) - -[//]: # (- [反向代理、负载均衡真有那么难吗?]()) - -[//]: # (- [Nginx SSL证书,从此踏上Https之路](docs/nginx/nginx服务器ssl证书配置.md)) - -[//]: # () -[//]: # () -[//]: # (#### docker) - -[//]: # () -[//]: # () -[//]: # (- 我与docker的第一次硬碰硬) - -[//]: # (- docker操作入门真有那么难吗?) - -[//]: # (- 这些基础操作指令,你会吗?) - -[//]: # (- 那些年,我常用的docker指令操作汇总) - -[//]: # () -[//]: # () -[//]: # (#### docker-compose) - -[//]: # () -[//]: # () -[//]: # (- 听说你装了N次都没搞定?) - -[//]: # (- 集群启动失败,yaml规范不清楚?) - -[//]: # (- [我了解的docker-compose都在这里了](https://mp.weixin.qq.com/s/nC4nF51xn61TZlenuUxDog)) - -[//]: # () -[//]: # () -[//]: # (#### linux下shell编程) - -[//]: # () -[//]: # (- [shell基础整理](https://mp.weixin.qq.com/s/gctrWdB1JEK59_a9tJQSkg)) - -[//]: # (- [操作mysql数据库](shell/shell连接mysql.md)) - -[//]: # (- shell操作docker) - -[//]: # (- 环境变量env) - -[//]: # () -[//]: # () -[//]: # (## 服务网关) - -[//]: # () -[//]: # () -[//]: # (#### kong) - -[//]: # () -[//]: # () -[//]: # (- [kong的的基本介绍](/api-gateway/kong/kong的基本介绍.md)) - -[//]: # (- [docker下kong的部署](/api-gateway/kong/基于docker部署kong网关服务.md)) - -[//]: # (- docker-compose搭建kong集群) - -[//]: # (- 可视化管理界面介绍) - -[//]: # () -[//]: # () -[//]: # (#### konga) - -[//]: # () -[//]: # () -[//]: # (- 基本介绍与docker部署) - -[//]: # (- 简单使用) - -[//]: # (- 路由管理) - -[//]: # () -[//]: # () -[//]: # (#### kong-dashboard) - -[//]: # () -[//]: # () -[//]: # (- docker简单部署) - -[//]: # (- 路由管理) - -[//]: # (- 插件介绍) - -[//]: # () -[//]: # () -[//]: # (## 服务注册) - -[//]: # () -[//]: # () -[//]: # (#### Apollo) - -[//]: # () -[//]: # () -[//]: # (> 携程开发的配置中心经典项目,可集成多语言客户端,实现灰度部署,在分布式微服务的场景下抽离出服务配置,方便统一管理、发布) - -[//]: # () -[//]: # () -[//]: # (#### Consul) - -[//]: # () -[//]: # () -[//]: # (> 服务注册、发现,key-value键值对管理) - -[//]: # () -[//]: # () -[//]: # (#### Nacos) - -[//]: # () -[//]: # () -[//]: # (> 背靠国内一线互联网大厂——阿里巴巴,也是可适用于微服务下的配置管理,支持Java、Nodejs等主流语言,目前生态良好,技术支持表现一般,属于Apollo替代产品) - -[//]: # () -[//]: # () -[//]: # (## 消息中间件) - -[//]: # () -[//]: # () -[//]: # (> 消息队列已经逐渐成为企业IT系统内部通信的核心手段。具有低耦合、可靠投递、广播、流量控制、最终一致性等一系列功能,成为异步RPC的主要手段之一。当今市面上有很多主流的消息中间件,如老牌的ActiveMQ、RabbitMQ,炙手可热的Kafka,阿里巴巴自主开发RocketMQ等。) - -[//]: # (>) - -[//]: # (> 目前个人了解的有:RabbitMQ、Kafka、RocketMQ) - -[//]: # () -[//]: # () -[//]: # (#### RabbitMQ) - -[//]: # () -[//]: # () -[//]: # (#### kafka) - -[//]: # () -[//]: # () -[//]: # (#### RocketMQ) - -[//]: # () -[//]: # () -[//]: # (## RPC框架) - -[//]: # () -[//]: # () -[//]: # (#### gRPC) - -[//]: # () -[//]: # () -[//]: # (> gRPC 一开始由 google 开发,是一款语言中立、平台中立、开源的远程过程调用(RPC)系统,tensorflow分布式与tensorflow serving底层通信都是是用的grpc。我自己基于JavaScript技术栈上较多的接触到gRPC,传送门:[基于js下各框架grpc的使用]()) - -[//]: # () -[//]: # () -[//]: # (- nodejs下grpc的简单实用) - -[//]: # () -[//]: # () -[//]: # (- grpc集成express框架) - -[//]: # () -[//]: # () -[//]: # (- grpc集成koa框架) - -[//]: # () -[//]: # () -[//]: # (- eggjs框架下grpc的线上部署) - -[//]: # () -[//]: # () -[//]: # (- grpc插件开发示例) - -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # (#### Dubbo) - -[//]: # () -[//]: # () -[//]: # (> Alibaba开发的一个RPC框架,远程接口基于Java Interface, 依托于Spring框架(**Java技术栈重点研究**)) - -[//]: # () -[//]: # () -[//]: # (#### Thrift) - -[//]: # () -[//]: # () -[//]: # (> Apache的一个项目(http://thrift.apache.org),前身是Facebook开发的一个RPC框架,采用thrift作为IDL (Interface description language)。) - -[//]: # () -[//]: # () -[//]: # (## Elk日志管理平台) - -[//]: # () -[//]: # () -[//]: # (> 全链路日志) - -[//]: # () -[//]: # (- [ELK基础概念与常用架构整理](docs/elk/基础概念与常用架构整理.md)) - -[//]: # () -[//]: # () -[//]: # (#### ElasticSearch) - -[//]: # () -[//]: # () -[//]: # (> 数据存储) - -[//]: # () -[//]: # () -[//]: # (#### Logstash) - -[//]: # () -[//]: # () -[//]: # (> 数据收集) - -[//]: # () -[//]: # () -[//]: # (#### Kibana) - -[//]: # () -[//]: # () -[//]: # (> 数据展示) - -[//]: # () -[//]: # () -[//]: # (## 监控工具) - -[//]: # () -[//]: # () -[//]: # (> 参考笔者线上平台:http://view.142vip.cn/grafana 账号/密码:test/123456 基于docker部署,由于是个人学生服务器,站点访问延迟较高) - -[//]: # (>) - -[//]: # (> 常用工具:promethus 、grafana、zabbix、lepus等) - -[//]: # () -[//]: # () -[//]: # (#### Prometheus) - -[//]: # () -[//]: # () -[//]: # (#### Grafana) - -[//]: # () -[//]: # () -[//]: # (#### Zabbix) - -[//]: # () -[//]: # () -[//]: # (#### lepus(天兔)) - -[//]: # () -[//]: # () -[//]: # (## 高可用架构) - -[//]: # () -[//]: # () -[//]: # (#### MySQL集群) - -[//]: # () -[//]: # () -[//]: # (##### 主从同步) - -[//]: # () -[//]: # () -[//]: # (> 实现功能:主从服务器数据一致,低延迟、高并发) - -[//]: # () -[//]: # () -[//]: # (- Binlog主从复制) - -[//]: # (- GTID主从复制) - -[//]: # (- 主主复制) - -[//]: # () -[//]: # () -[//]: # (##### 代理中间件) - -[//]: # () -[//]: # () -[//]: # (> 实现功能:读写分离、分库分表、负载均衡、故障切换) - -[//]: # () -[//]: # () -[//]: # (- Mycat) - -[//]: # (- 360Atlas) - -[//]: # () -[//]: # () -[//]: # (#### 集群监控) - -[//]: # () -[//]: # () -[//]: # (> 实现功能:实时监控、可视化数据显示、故障报警) - -[//]: # () -[//]: # () -[//]: # (##### Prometheus) - -[//]: # () -[//]: # () -[//]: # (- 监控MySQL集群) - -[//]: # (- 监控Mongo数据库) - -[//]: # (- 监控Node服务) - -[//]: # (- 监控linux服务器) - -[//]: # (- 监控redis集群) - -[//]: # () -[//]: # () -[//]: # (##### Grafana) - -[//]: # () -[//]: # () -[//]: # (- 基本安装部署) - -[//]: # (- 功能介绍和简单操作) - -[//]: # (- 可视化数据图形显示界面) - -[//]: # (- 常用模板) - -[//]: # () -[//]: # () -[//]: # (##### alter-manager) - -[//]: # () -[//]: # () -[//]: # (- 推送到邮箱) - -[//]: # (- 推送到钉钉、微信机器人) - -[//]: # (- 推送到自定义消息接口(webhook钩子)) - -[//]: # () -[//]: # () -[//]: # (#### 压力测试) - -[//]: # () -[//]: # () -[//]: # (- jmeter) - -[//]: # () -[//]: # () -[//]: # (#### Redis集群) - -[//]: # () -[//]: # () -[//]: # (> 持续整理中...) - -[//]: # () -[//]: # () -[//]: # (##### 简单主从模式) - -[//]: # () -[//]: # () -[//]: # (#### 哨兵模式) - -[//]: # () -[//]: # () -[//]: # (##### cluster模式) - -[//]: # () -[//]: # () -[//]: # (## 网站搭建) - -[//]: # () -[//]: # () -[//]: # (> 从大二开始搭建个人网站:http://www.142vip.cn 起初非常简陋,工作之后计划进行第三版迭代,一直抽空佛系谢谢, 目前在重构中..) - -[//]: # () -[//]: # () -[//]: # (- 最初的梦想) - -[//]: # (- 舍弃Java,我的重构之路) - -[//]: # (- 网站正规化,Nginx配置SSL证书) - -[//]: # (- 小小网站却耗费三台学生服务器?) - -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # (## 书籍整理) - -[//]: # () -[//]: # (### 技术类) - -[//]: # (> 待整理) - -[//]: # () -[//]: # (#### [狼书 - 了不起的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/Readme.md)) - -[//]: # () -[//]: # (- [第一章 Node.js初识](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第一章%20Node.js初识.md)) - -[//]: # (- [第二章 Nodejs安装与入门](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第二章%20Nodejs安装与入门.md)) - -[//]: # (- [第三章 更了不起的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第三章%20更了不起的Node.js.md)) - -[//]: # (- [第四章 更好的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第四章%20更好的Node.js.md)) - -[//]: # (- [第五章 Node.js是如何执行的](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第五章%20Node.js是如何执行的.md)) - -[//]: # (- [第六章 模块与核心](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第六章%20模块与核心.md)) - -[//]: # (- [第七章 异步写法与流程控制](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第七章%20异步写法与流程控制.md)) - -[//]: # () -[//]: # (- [全部笔记](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/全部笔记.md)) - -[//]: # () -[//]: # () -[//]: # (#### [ES6标准入门——阮一峰]()) - -[//]: # () -[//]: # (> 本书内容较多,很多基础细节都有说明,难度中等、适合入门,书中很多例子我也摘抄了很多,主要是我认为重要的,笔记按照自己学习逻辑整理的,请君慢用) - -[//]: # (- [1.ECMAScript 6 简介](docs/article-records/读书笔记/ES6标准入门/1.ECMAScript%206%20简介.md)) - -[//]: # (- [2.let和const命令](docs/article-records/读书笔记/ES6标准入门/2.let和const的命令.md)) - -[//]: # (- [3.变量的解构赋值](docs/article-records/读书笔记/ES6标准入门/3.变量的解构赋值.md)) - -[//]: # (- [4.字符串详解]()) - -[//]: # (### 非技术类) - -[//]: # () -[//]: # (> 主要是跟计算机无关的一些书,在看完之后,会选择性的进行思维导图、经典词句整理,也可能添加个人思考) - -[//]: # () -[//]: # () -[//]: # (#### [你好孤独 - 陈果](docs/article-records/读书笔记/好的孤独-陈果/Readme.md)) - -[//]: # () -[//]: # (## 公众号汇总) - -[//]: # () -[//]: # (### 2020年) - -[//]: # () -[//]: # (#### 7月) - -[//]: # () -[//]: # (- [【2020-07-26】微信公众号我来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483659&idx=1&sn=ac7b633a45ac06d388e0698163a2543e&chksm=fcdfb887cba8319151aedfa80c5b59d130838af81fe51c76e5c4926f82f4937b51c8c0c1470e&token=1304241434&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-07-27】介绍一下,我在B站](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483760&idx=1&sn=30a9fa2a051079c5330039615950c34d&chksm=fcdfb8fccba831ea64644be501ecca3cea5846f16367faed9c84b44a30d9b6dc30456dae6548&token=1304241434&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-07-28】五年了,我终于换了人生中的第一台MacBookPro](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483762&idx=1&sn=e9ea759f1c1589881cc3bd9cabddb70a&chksm=fcdfb8fecba831e8c4635a4cefd302977071ed11a4dda6161cf9ad8458865297194f87cb013a&token=1304241434&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-07-29】工作中第一次被喷,我到底是如何应对的?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483770&idx=1&sn=6b760873a814f4e18baab415bee3d863&chksm=fcdfb8f6cba831e00802de653ff6723a0bb169a93fe3a6a9762ee62d75d8cd88409268db9047&token=1304241434&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-07-31】CSDN关注100了,就这????](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483778&idx=1&sn=3d9f623c58d595f75d7092783a6c5abe&chksm=fcdfb80ecba83118e76de1ed88a5be51229e4145182aee6e0bcc13e4697707cf9f4609d8799d&token=1304241434&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # () -[//]: # (#### 8月) - -[//]: # (- [【2020-08-01】旧友相见,甚是怀念](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483790&idx=1&sn=76e13ac79ad498309542c9f41878bb1c&chksm=fcdfb802cba8311456ea9ff3309c4354055022cd0056b13c11fac44252231550e17a03f26f29&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-08-03】JavaScript基础介绍和快速入门](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483805&idx=1&sn=4da4e0d3a2912aee146248c1d8f7f96f&chksm=fcdfb811cba83107fd8f08d3e35af7c72bf7d908d577ad83e45d80b0e9d1bbdbf16b1f169d64&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (#### 9月) - -[//]: # () -[//]: # (- [【2020-09-01】Redis的简单安装和部署 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=1&sn=489aa1bd12487b0bf8f2a7694f4ca1aa&chksm=fcdfbd34cba83422f0afee027747d9e95773e093fa3a24225c2729029c4392bf42043964782f&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-01】就很像?? ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=2&sn=a9962c6ca3a5eddd085bcd15617f64d9&chksm=fcdfbd34cba83422b987020a858b7cf31bfde6033642d697d5a00ad9ed618f3cf14deb207d67&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-03】shell编程基础整理 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=1&sn=6e3e862153755d9e61f5f4ebf220381d&chksm=fcdfbc92cba835844e8b6fd37d86a34ccf83342895f448c88ba5b62db974eb536a8e74a121aa&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-03】大学四年建站用过的云服务器都在这里了 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=2&sn=c7589eecbe58ff8939f72c0ff0bf567d&chksm=fcdfbc92cba83584b03dfeea7290606ce8249b0c3105b0b3b95a9087c77e3b1c7f863d8e30f9&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-04】面试复盘和思考 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484711&idx=1&sn=bf362439ccfad04da53ce65c824a988d&chksm=fcdfbcabcba835bddc43c40fd3a454793adf7849a5d5bb356825d481b82ae3e58a749859502c&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-06】朋友是“无用”的,不是你瞧不起我,就是我瞧不起你 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=1&sn=e0f8a7a70ddede75d94b202ddc6106d6&chksm=fcdfbcdbcba835cd2138658d750f7e09a820b34daf4624f253a21a11b5de56635d35e4c0df19&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-06】GitHub简单使用 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=2&sn=ade86739c94f99f944a3d387bc7e13ef&chksm=fcdfbcdbcba835cd192c3b7b7eeea8f5dbb16b2b2fa58b6e2094184f5aa3341927a6d1fad6f8&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-07】MySQL日志类型把我难哭了,你学废了吗?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484771&idx=1&sn=6ae4c6e8d333b0e1aa5cd1aee161d9b8&chksm=fcdfbcefcba835f94e3c0abc189477f241f675f38a63eb03bd320447e89da39cb08b72038ba3&token=1613702159&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-12】向各位汇报,再也不敢鸽了,人生处处有惊喜](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484784&idx=1&sn=ae73f1f4e53b622039a75ec41cabe378&chksm=fcdfbcfccba835eafefe304913e4078cf8dfac22f62fd9d686b307bbdf46d147016f5e876e05&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-13】来来来,无厘头技术(水)文,各种尬。简简单单评价一下](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=1&sn=10d26a600112ec4f95b3b3f470955744&chksm=fcdfbc03cba83515b07f0ae6cee791d1fb5fd619364cff3a17a4deab91333f0a6277b09a66a9&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-13】基础Brew和Tree的安装实录](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=2&sn=94a6455ed6b17fa5b27e96358e935803&chksm=fcdfbc03cba83515d13dcfc2dea2445085a34ff4360e0a367fd914bb04bc6ba18a780a0cd2d2&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-13】PM2进程管理,给我学!](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=3&sn=38a289efffda9510b5ff04c5bed0663e&chksm=fcdfbc03cba835154c888b9d7f86eac85c250eefb9d053687173274373f2f8d7b19fc307e76a&token=639111151&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-14】数据结构,一定要学废了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484823&idx=1&sn=d41bb8da02585cf9ea8d0b3ef27e3dbb&chksm=fcdfbc1bcba8350d84ba2f01eaf187cbaa2d4cf5a9078beb1f2fafe94edb0126c82595ed8191&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-16】ELK基础概念与常用架构整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484837&idx=1&sn=7f0de3eeea3fc6ee299587704f5c44cd&chksm=fcdfbc29cba8353fd894582da7ae2c93b5920c4dbb1e197b011a817dc0962e317842a32d5560&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-17】分享书上一段话,问一个问题](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=1&sn=7af55ef3a7d843d9c43de6d6c7911da3&chksm=fcdfbc3ecba835287b2c644cda606454a713d370fbd7d14714b22a04277f7a7784b96b8b277e&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-17】看源码遇到的三个知识点,一个也没懂](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=2&sn=c59839c677d7c9652a09d1f8c70ef8d6&chksm=fcdfbc3ecba83528cf8271a2615129340a6f11954b6d9396160d0fb2c41593253d5e3510a031&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-20】express()函数整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=2&sn=63e6b669341217135013816464dd5bd9&chksm=fcdfbc4dcba8355b4de0f712047709425a35fa3b122378b31f0e4db3afb82dfd38872862aab4&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-22】入秋了,安好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=1&sn=e39e3547da49f40e1b64deadf9a9cfef&chksm=fcdfbc4dcba8355bfa9c8b9531a463fc652b764064528dd6c243f47a157b20e017bad3f410f4&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-22】Nginx安装详解,我服务器上也是这样的](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=1&sn=b1073522cfd3ce6ebbe85e85ad4e35e0&chksm=fcdfbc6dcba8357bdb212c9db1378a045d0dcfd95b79ed05688180f05d2b391f9b724d0d752f&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-09-22】被攻击的一天](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=2&sn=34c61ed01c6522d2861be3342ec12ad5&chksm=fcdfbc6dcba8357b76eb0fe6c502d932def6cd232297b010f9b2f9a1fca35c38df77dacce7f2&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-09-26】跟父亲视频的一个半小时,聊到了我,也聊到了Ta](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484929&idx=1&sn=394783dd2bfd65da24ae6dcb89d69ec6&chksm=fcdfbf8dcba8369b926b7083bbe3515aa5857f7589acc3f9d6d4987c67539a76dbd6e3cb70a1&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (#### 10月) - -[//]: # (- [【2020-10-07】时间太快,溜了溜了,杭州见](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484943&idx=1&sn=ad37db87dc40f381fd18cc828e492384&chksm=fcdfbf83cba8369598fc2773b63df235a9719b43749e7daab753c621fef5af4fba054dbb46ea&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-10-14】写不了代码就不写嘛](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484951&idx=1&sn=edddf3d6c8f3fc6dd1d14063b536c732&chksm=fcdfbf9bcba8368d81ddffcbd258f7e4b7fb573d2a8963859e1b156e8a5f5d81f5629c49be6e&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-10-18】我不行了,这号关注量男女7:3 还怎么相亲嘛?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484968&idx=1&sn=d37960ed81044fbf314440af85049d65&chksm=fcdfbfa4cba836b25082535910f7137d1513d834d54fbfadf48a433b29511ccf4d532f19b88a&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-10-26】悄悄接你下班,陪你回家](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484988&idx=1&sn=947c487946fa3574d33e9c6861a1ee28&chksm=fcdfbfb0cba836a626d2efa904a5177c2e0916c381b26c89b6dcfc610a380b906d4480f7cc9b&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (#### 11月) - -[//]: # () -[//]: # (- [【2020-11-01】11月,你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485002&idx=1&sn=3760eba58f7ded433b71bec48b89a681&chksm=fcdfbfc6cba836d0b7db1f2aa5a4a884f68f8ce20a59aa44b4ac46c59eb4dd1c233079241a4a&token=368257571&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-11-15】她来了她来了,她带着剪了三遍的视频来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485042&idx=1&sn=181ae5062c31ee7931390607b6f10358&chksm=fcdfbffecba836e8275c849007470db6964f7cd675af59fe73c94369334d17d4840e8c0413d5&token=898438314&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-11-18】陪我一路的小姐姐,谢谢啦~ 我大意了呀,没有闪](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485053&idx=1&sn=ed2fe0de87b70781cdb7755ef4726340&chksm=fcdfbff1cba836e7165dc53722aaf96ef38d8f43cfadadcb4695d8ff430ea64619caada81cfa&token=1939941957&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-11-30】11月的尾巴,12月你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485066&idx=1&sn=1d357917f548a6d977af96c6582db527&chksm=fcdfbf06cba836103152f7a3fdfbf97c1be2472a84f824cbddd532c15aefe14c71b3b076233f&token=831506871&lang=zh_CN#rd)) - -[//]: # () -[//]: # (#### 12月) - -[//]: # () -[//]: # (- [【2020-12-06】周末小记——忆旧友、吃火锅,也会感慨](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485080&idx=2&sn=bdc551f2e9bf54dc01881979339af8ad&chksm=fcdfbf14cba836022a05854547cbca03b5a08b912a0e0f195d4856d6b53ecd78aee2f167b515&token=1581389686&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-12-10】上火、牙疼,也要砍程序媛一刀](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485100&idx=1&sn=e7c0c41229d51ebfab2939deb1751672&chksm=fcdfbf20cba836364da35ab5acfed076876aae486126bc1c41cdd2502cc89a41cbde7c645610&token=1054397108&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2020-12-17】今晚不蹦迪,来聊一聊个人项目的接口返回](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485136&idx=1&sn=4619fb835e6d57e106ab01116012662a&chksm=fcdfbf5ccba8364aecddf14d11ed8ba36f38050b83b30b8d46e10f86b164aab05322b8455b36&token=755050934&lang=zh_CN#rd)) - -[//]: # () -[//]: # (- [【2020-12-20】事情,从英吉利海岸的那杯卡布奇诺美式咖啡说起](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485180&idx=1&sn=15ab9be3e15130103f26c919cbe0b605&chksm=fcdfbf70cba83666d287acc35485d02ddf67bacad6ea46d9ef04521f9f429fcb015d371c918e&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (### 2021年) - -[//]: # () -[//]: # () -[//]: # (#### 1月) - -[//]: # () -[//]: # () -[//]: # (- [【2021-01-06】谁在看小王子呀~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485228&idx=1&sn=1c30866a209af2a5eb927fd7bd63cc8b&chksm=fcdfbea0cba837b6d4cf9865b72a6a1553c4d9b6a6cce369bb09f66730ab37ec649071e7ab7c&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2021-01-15】2020小结,没事就点点看看呗,反正小目标都没完成](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485249&idx=1&sn=dadf2a6dbed1879bbd98c62491436a9c&chksm=fcdfbecdcba837db5c11b8023ffa7ad6cf5a47c03027a0029604a50d0a77c75908efc05af39a&token=1356818265&lang=zh_CN#rd)) - -[//]: # ( ) -[//]: # (- [【2021-01-17】搞波大的,浅谈深拷贝——文末有彩蛋](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485258&idx=1&sn=fb71007a5feed8e18674be27b1c749ab&chksm=fcdfbec6cba837d099e90a5f45781ee8cac474388e25ad9383a4fbc05fdb16a8e1377265c018&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2021-01-18】到底该如何发布Npm插件,常用指令在这里](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485277&idx=1&sn=9eb7c3cef21ace2cc5853e382f2bb03f&chksm=fcdfbed1cba837c7839f3b57836f43b3425c8b5a7888f543bf4a1dd8b39cd82ed7d51a24a685&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2021-01-20】好用的AntDocs,也来学着用一下,基本过程整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485291&idx=1&sn=19f13df8131a9f662973f2d9240c1eab&chksm=fcdfbee7cba837f180d8ad30735cd61e6c73fe195e63d46046bb24f80e1536aa0a585c3e1015&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2021-01-27】【持续更新】从查找算法开始数据结构入门,大家都在掘金等你](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485318&idx=1&sn=6ae5fc9f1cf994818ff89d53a926761e&chksm=fcdfbe0acba8371c9d0025008084857cf14c52b01dfb1b9460d3388ba543c36da2abcbf90216&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2021-01-30】ORM框架入门之Sequelize,我快翻译不动了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485341&idx=1&sn=fc493c28ab138056567e916b769ddbf2&chksm=fcdfbe11cba8370793e8e0d71e7766f4e1e7f3e8672921d6b98757f7d7b271b290f3edc65d6f&token=1356818265&lang=zh_CN#rd)) - -[//]: # ( ) -[//]: # (#### 2月) - -[//]: # () -[//]: # (- [【2021-02-07】被妹妹支配的一周,晚上差点连家都回不去..](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485376&idx=1&sn=049a5df5cb97786e80aded38a1bf3732&chksm=fcdfbe4ccba8375a52cb8d7077836216e5f5f41ee9453aebf524eb0a5d8a5db48cbabc11f3e4&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2021-02-11】【新年快乐】程序员的2020,就这样悄咪咪地溜走了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485404&idx=1&sn=276100858df23daf987dbc68997477df&chksm=fcdfbe50cba837460079fc9ab414754a49668f82dc0f6a5a41ec320d3e5dd77c1a8c271e061b&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # () -[//]: # (- [【2021-02-13】抢红包、拼手气来啦,之前答应的抽奖变成新年红包啦~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485420&idx=1&sn=26c0e3690363af5dddd805ae417eeee9&chksm=fcdfbe60cba8377645e44333ccbe35147b9844578008e5699aba62b82c12fc03634e2d68781c&token=1356818265&lang=zh_CN#rd)) - -[//]: # () -[//]: # (## 赞赏支持) - -[//]: # () -[//]: # () -[//]: # (> 相逢不用忙归去,明日黄花蝶也愁;若系列文章对你有帮助,不如请作者喝一杯伏见桃山...) - -[//]: # (> ) - -[//]: # (> **赞赏过的一定要扫下方右侧微信跟我说呀!!!!!!**) - -[//]: # () -[//]: # () - -[//]: # (
) - -[//]: # () - -[//]: # () -[//]: # () -[//]: # (
) - -[//]: # () -[//]: # () -[//]: # (## 联系我) - -[//]: # () -[//]: # () -[//]: # (> 对仓库有任何问题或建议,欢迎微信“骚扰”,商务合作请备注!) - -[//]: # (
) - -[//]: # () - -[//]: # (
) - -[//]: # () -[//]: # () -[//]: # (## 鸣谢) - -[//]: # () -[//]: # () -[//]: # (以下排名不分先后!([详细统计]())) - -[//]: # () -[//]: # () -[//]: # () - -[//]: # () -[//]: # () -[//]: # (## 赞助列表) - -[//]: # () -[//]: # (以下排名不分先后!) - -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # () -[//]: # (## 公众号) - -[//]: # () -[//]: # () -[//]: # (如果大家想要实时关注我更新的文章以及我的日常的话,可以关注我的公众号,基本每天都会更新技术和各种吹水文章,就当做是记录心情、成长的地方吧) - -[//]: # () -[//]: # () - -[//]: # () -[//]: # (
) - -[//]: # ( ) - -[//]: # (
) \ No newline at end of file diff --git a/docs/ds/Readme.md b/docs/ds/Readme.md deleted file mode 100644 index f781219..0000000 --- a/docs/ds/Readme.md +++ /dev/null @@ -1,109 +0,0 @@ - - -## 写在最前面 - - - - - -这份《薛定谔的Egg.js》文档,是我考虑很久之后,才决定要整理出来的,在这上面倾注了很多时间 - - -- 也不知道有没有用 -- 也不知道能不能整理完 -- 更不知道对你会不会有所帮助 - - -但愿我们都能在此有所收获,放手开始吧!! - - -最后,仅以“**祷以恒切, 盼以喜乐,苦以坚忍,必有所得**”,共勉~ - - ---- - - -## 阅读须知 - - -- 该部分为框架基础,是基于[Egg.js官网](https://eggjs.org/zh-cn/)和自己使用体验进行整理汇总,难免会存在重复部分。 -- 若在阅读、学习过程中发现与官网描述有所差异,可以立即与我联系进行确认与更改。 -- **文档用于个人整理和技术学习,禁止无授权转载、商用。** - - - - - -## 技术支持 - -- [Egg.js官网](https://eggjs.org/zh-cn/) -- [VuePress](https://www.vuepress.cn/guide) -- [AntDocs](https://antdocs.seeyoz.cn/guide/) - - - -## 适用群体 - - -- 默认已了解过[ES6](https://es6.ruanyifeng.com/)语法和部分Node后端框架([Express](https://www.expressjs.com.cn/)、[Koa](https://koa.bootcss.com/))。 -- 具有一定JavaScript开发基础,对JavaScript开发有浓烈兴趣。 -- **已有Egg.js开发经验,但细节用法不胜了解的,非常适合用来查缺补漏。** - - -## 资料共享 - -> 链接失效可以关注公众号或私信获取"链接" - -## 参考资料 - -- 大话数据结构 - 程杰 -- 数据结构复习全书 - 王道论坛 -- 视频教程 - 王道论坛 - ---- - -### 联系我 - -- 有任何问题或建议,欢迎微信“骚扰”,商务合作请备注! - -
- -
- - - -# - -### 公众号 - - -- 相逢不用忙归去,明日黄花蝶也愁.... - -- **若系列文章对你有所帮助,不如来公众号交个朋友吧.** - - - - -

- -

- -交流/加群/互看朋友圈 -当然:**聊天 /提问 /建议 /提需求** 可以在本公众号直接**私信**,后台可以看到,有时间即会回复,偶尔的延迟和疏漏还请小伙伴们谅解,蟹蟹。 - - - - - - - - - - diff --git a/docs/algorithm/Readme.md b/docs/manuscripts/algorithm/Readme.md similarity index 100% rename from docs/algorithm/Readme.md rename to docs/manuscripts/algorithm/Readme.md diff --git a/docs/.vuepress/config/sidebar/algorithm.sidebar.js b/docs/manuscripts/algorithm/algorithm.sidebar.ts similarity index 93% rename from docs/.vuepress/config/sidebar/algorithm.sidebar.js rename to docs/manuscripts/algorithm/algorithm.sidebar.ts index f84603d..203d306 100644 --- a/docs/.vuepress/config/sidebar/algorithm.sidebar.js +++ b/docs/manuscripts/algorithm/algorithm.sidebar.ts @@ -1,4 +1,4 @@ -export default [ +export const algorithmSidebar = [ { text: '基础入门', link: "/ds/basic_introduction", diff --git a/docs/algorithm/algorithm_note/Readme.md b/docs/manuscripts/algorithm/algorithm_note/Readme.md similarity index 100% rename from docs/algorithm/algorithm_note/Readme.md rename to docs/manuscripts/algorithm/algorithm_note/Readme.md diff --git a/docs/algorithm/topic_practice/Readme.md b/docs/manuscripts/algorithm/topic_practice/Readme.md similarity index 100% rename from docs/algorithm/topic_practice/Readme.md rename to docs/manuscripts/algorithm/topic_practice/Readme.md diff --git a/docs/ccp/Readme.md b/docs/manuscripts/ccp/Readme.md similarity index 90% rename from docs/ccp/Readme.md rename to docs/manuscripts/ccp/Readme.md index be23235..4e66dcc 100644 --- a/docs/ccp/Readme.md +++ b/docs/manuscripts/ccp/Readme.md @@ -7,7 +7,8 @@ * @LastEditors: 【B站&公众号】Rong姐姐好可爱 * @LastEditTime: 2022-04-24 08:12:21 --> -## 计算机组成原理 + +# 计算机组成原理 doing \ No newline at end of file diff --git a/docs/manuscripts/ccp/cpp.sidebar.ts b/docs/manuscripts/ccp/cpp.sidebar.ts new file mode 100644 index 0000000..f33f4b6 --- /dev/null +++ b/docs/manuscripts/ccp/cpp.sidebar.ts @@ -0,0 +1 @@ +export const cppSidebar=[] \ No newline at end of file diff --git a/docs/manuscripts/cn/Readme.md b/docs/manuscripts/cn/Readme.md new file mode 100644 index 0000000..7084ee3 --- /dev/null +++ b/docs/manuscripts/cn/Readme.md @@ -0,0 +1,5 @@ + + +# 计算机网络 + +doing \ No newline at end of file diff --git a/docs/manuscripts/cn/cn.sidebar.ts b/docs/manuscripts/cn/cn.sidebar.ts new file mode 100644 index 0000000..aa12734 --- /dev/null +++ b/docs/manuscripts/cn/cn.sidebar.ts @@ -0,0 +1 @@ +export const cnSidebar=[] \ No newline at end of file diff --git a/docs/ds/basic-introduction/1.basic_concepts.md b/docs/manuscripts/ds/basic-introduction/1.basic_concepts.md similarity index 100% rename from docs/ds/basic-introduction/1.basic_concepts.md rename to docs/manuscripts/ds/basic-introduction/1.basic_concepts.md diff --git a/docs/ds/basic-introduction/2.three_elements_of_data_structure.md b/docs/manuscripts/ds/basic-introduction/2.three_elements_of_data_structure.md similarity index 100% rename from docs/ds/basic-introduction/2.three_elements_of_data_structure.md rename to docs/manuscripts/ds/basic-introduction/2.three_elements_of_data_structure.md diff --git a/docs/ds/basic-introduction/3.algorithm_and_algorithm_evaluation.md b/docs/manuscripts/ds/basic-introduction/3.algorithm_and_algorithm_evaluation.md similarity index 100% rename from docs/ds/basic-introduction/3.algorithm_and_algorithm_evaluation.md rename to docs/manuscripts/ds/basic-introduction/3.algorithm_and_algorithm_evaluation.md diff --git a/docs/ds/basic-introduction/basic_introduction.png b/docs/manuscripts/ds/basic-introduction/basic_introduction.png similarity index 100% rename from docs/ds/basic-introduction/basic_introduction.png rename to docs/manuscripts/ds/basic-introduction/basic_introduction.png diff --git a/docs/ds/basic-introduction/basic_introduction.xmind b/docs/manuscripts/ds/basic-introduction/basic_introduction.xmind similarity index 100% rename from docs/ds/basic-introduction/basic_introduction.xmind rename to docs/manuscripts/ds/basic-introduction/basic_introduction.xmind diff --git a/docs/ds/basic-introduction/Readme.md b/docs/manuscripts/ds/basic-introduction/readme.md similarity index 100% rename from docs/ds/basic-introduction/Readme.md rename to docs/manuscripts/ds/basic-introduction/readme.md diff --git a/docs/ds/basic_introduction.md b/docs/manuscripts/ds/basic_introduction.md similarity index 100% rename from docs/ds/basic_introduction.md rename to docs/manuscripts/ds/basic_introduction.md diff --git a/docs/ds/coding/algorithm.md b/docs/manuscripts/ds/coding/algorithm.md similarity index 100% rename from docs/ds/coding/algorithm.md rename to docs/manuscripts/ds/coding/algorithm.md diff --git a/docs/manuscripts/ds/ds.sidebar.ts b/docs/manuscripts/ds/ds.sidebar.ts new file mode 100644 index 0000000..f6d26ca --- /dev/null +++ b/docs/manuscripts/ds/ds.sidebar.ts @@ -0,0 +1,80 @@ +export const dsSidebar = [ + { + text: '基础入门', + prefix: "basic-introduction", + collapsible: false, + children: [{ + text: '1.1 基本概念', + link: '1.basic_concepts.md' + }, { + text: '1.2 数据结构三要素', + link: '2.three_elements_of_data_structure.md' + }, { + text: '1.3 算法和算法评价', + link: '3.algorithm_and_algorithm_evaluation.md' + }], + }, + { + text: '线性表', + collapsible: false, + prefix: "linear-table", + children: [{ + text: '2.1 基础概念和操作', + link: '1.basic_concept_and_operation.md' + }, { + text: '2.2 线性表的顺序表示', + link: '2.sequential_representation.md' + }, { + text: '2.3 基础概念和操作', + link: '3.chain_representation.md' + }, { + text: '2.4 基础概念和操作', + link: '4.double_linked_list.md' + }, { + text: '2.5 基础概念和操作', + link: '5.circular_list.md' + }, { + text: '2.6 基础概念和操作', + link: '6.static_linked_list.md' + }, { + text: '2.7 基础概念和操作', + link: '7.comparison_of_sequential_list_and_linked_list.md' + }, { + text: '2.8 存储结构的选取', + link: '8.selection_of_storage_structure.md' + }, { + text: '2.9 零碎知识补充', + link: '9.piecemeal_knowledge_supplement.md' + }], + }, + { + text: "栈和队列", + prefix: "栈和队列", + collapsible: false, + children: [{ + text: '3.1 栈的基本概念和基本操作', + link: '1.栈的基本概念和基本操作.md' + }, { + text: '3.2 栈的顺序存储结构', + link: '2.栈的顺序存储结构.md' + }, { + text: '3.3 栈的基本概念和基本操作', + link: '1.栈的基本概念和基本操作.md' + }, { + text: '3.4 栈的基本概念和基本操作', + link: '1.栈的基本概念和基本操作.md' + }, { + text: '3.5 栈的基本概念和基本操作', + link: '1.栈的基本概念和基本操作.md' + }, { + text: '3.6 栈的基本概念和基本操作', + link: '1.栈的基本概念和基本操作.md' + }, { + text: '3.7 栈和队列的应用', + link: '7.栈和队列的应用.md' + }, { + text: '3.8 特殊矩阵的压缩存储', + link: '8.特殊矩阵的压缩存储.md' + }] + } + ] \ No newline at end of file diff --git a/docs/ds/linear-table/1.basic_concept_and_operation.md b/docs/manuscripts/ds/linear-table/1.basic_concept_and_operation.md similarity index 98% rename from docs/ds/linear-table/1.basic_concept_and_operation.md rename to docs/manuscripts/ds/linear-table/1.basic_concept_and_operation.md index e8e6750..d238c28 100644 --- a/docs/ds/linear-table/1.basic_concept_and_operation.md +++ b/docs/manuscripts/ds/linear-table/1.basic_concept_and_operation.md @@ -10,7 +10,7 @@ -## 线性表的基础概念和基本操作 +# 线性表的基础概念和基本操作 > 强调线性表是一种逻辑结构,不是存储结构 diff --git a/docs/ds/linear-table/2.sequential_representation.md b/docs/manuscripts/ds/linear-table/2.sequential_representation.md similarity index 99% rename from docs/ds/linear-table/2.sequential_representation.md rename to docs/manuscripts/ds/linear-table/2.sequential_representation.md index 9c12999..489466a 100644 --- a/docs/ds/linear-table/2.sequential_representation.md +++ b/docs/manuscripts/ds/linear-table/2.sequential_representation.md @@ -9,7 +9,7 @@ --> -## 线性表的顺序表示 +# 线性表的顺序表示 ### 定义 diff --git a/docs/ds/linear-table/3.chain_representation.md b/docs/manuscripts/ds/linear-table/3.chain_representation.md similarity index 99% rename from docs/ds/linear-table/3.chain_representation.md rename to docs/manuscripts/ds/linear-table/3.chain_representation.md index d760737..bcb675e 100644 --- a/docs/ds/linear-table/3.chain_representation.md +++ b/docs/manuscripts/ds/linear-table/3.chain_representation.md @@ -11,7 +11,7 @@ -## 线性表的链式表示 +# 线性表的链式表示 顺序表的插入、删除操作需要移动大量元素,影响了运行效率(虽然时间复杂度为O(1)的情况也存在)。 diff --git a/docs/ds/linear-table/4.double_linked_list.md b/docs/manuscripts/ds/linear-table/4.double_linked_list.md similarity index 99% rename from docs/ds/linear-table/4.double_linked_list.md rename to docs/manuscripts/ds/linear-table/4.double_linked_list.md index d9e3149..78665f1 100644 --- a/docs/ds/linear-table/4.double_linked_list.md +++ b/docs/manuscripts/ds/linear-table/4.double_linked_list.md @@ -11,7 +11,7 @@ -## 双链表 +# 双链表 从单链表的结构上来看 diff --git a/docs/ds/linear-table/5.circular_list.md b/docs/manuscripts/ds/linear-table/5.circular_list.md similarity index 99% rename from docs/ds/linear-table/5.circular_list.md rename to docs/manuscripts/ds/linear-table/5.circular_list.md index 1306f32..f3436d9 100644 --- a/docs/ds/linear-table/5.circular_list.md +++ b/docs/manuscripts/ds/linear-table/5.circular_list.md @@ -11,7 +11,7 @@ -## 循环链表 +# 循环链表 - 循环单链表 - 循环双链表 diff --git a/docs/ds/linear-table/6.static_linked_list.md b/docs/manuscripts/ds/linear-table/6.static_linked_list.md similarity index 98% rename from docs/ds/linear-table/6.static_linked_list.md rename to docs/manuscripts/ds/linear-table/6.static_linked_list.md index c9d2539..605143a 100644 --- a/docs/ds/linear-table/6.static_linked_list.md +++ b/docs/manuscripts/ds/linear-table/6.static_linked_list.md @@ -11,7 +11,7 @@ -## 静态链表 +# 静态链表 > 借助数组来描述线性表的链式存储结构,结点元素同样存在数据域`data`和指针域`next` diff --git a/docs/ds/linear-table/7.comparison_of_sequential_list_and_linked_list.md b/docs/manuscripts/ds/linear-table/7.comparison_of_sequential_list_and_linked_list.md similarity index 98% rename from docs/ds/linear-table/7.comparison_of_sequential_list_and_linked_list.md rename to docs/manuscripts/ds/linear-table/7.comparison_of_sequential_list_and_linked_list.md index 85aed33..344063f 100644 --- a/docs/ds/linear-table/7.comparison_of_sequential_list_and_linked_list.md +++ b/docs/manuscripts/ds/linear-table/7.comparison_of_sequential_list_and_linked_list.md @@ -10,7 +10,7 @@ -## 顺序表和链表的比较 +# 顺序表和链表的比较 ### 存取方式 diff --git a/docs/ds/linear-table/8.selection_of_storage_structure.md b/docs/manuscripts/ds/linear-table/8.selection_of_storage_structure.md similarity index 98% rename from docs/ds/linear-table/8.selection_of_storage_structure.md rename to docs/manuscripts/ds/linear-table/8.selection_of_storage_structure.md index d41e0ed..f1602cb 100644 --- a/docs/ds/linear-table/8.selection_of_storage_structure.md +++ b/docs/manuscripts/ds/linear-table/8.selection_of_storage_structure.md @@ -11,7 +11,7 @@ -## 存储结构的选取 +# 存储结构的选取 diff --git a/docs/ds/linear-table/9.piecemeal_knowledge_supplement.md b/docs/manuscripts/ds/linear-table/9.piecemeal_knowledge_supplement.md similarity index 98% rename from docs/ds/linear-table/9.piecemeal_knowledge_supplement.md rename to docs/manuscripts/ds/linear-table/9.piecemeal_knowledge_supplement.md index 45d1a68..d794471 100644 --- a/docs/ds/linear-table/9.piecemeal_knowledge_supplement.md +++ b/docs/manuscripts/ds/linear-table/9.piecemeal_knowledge_supplement.md @@ -10,7 +10,7 @@ -## 零碎知识补充 +# 零碎知识补充 - 无论是链表的插入还是删除操作,必须保证不断链【重要】 - 顺序存储结构可以随机存取也能顺序存取,链式结构只能进行顺序存取 diff --git a/docs/ds/linear-table/Readme.md b/docs/manuscripts/ds/linear-table/readme.md similarity index 95% rename from docs/ds/linear-table/Readme.md rename to docs/manuscripts/ds/linear-table/readme.md index 099592c..3609c2d 100644 --- a/docs/ds/linear-table/Readme.md +++ b/docs/manuscripts/ds/linear-table/readme.md @@ -7,5 +7,6 @@ * @LastEditTime: 2022-04-24 09:03:44 --> +# 线性表 ![](./线性表_水印.png) \ No newline at end of file diff --git a/docs/ds/linear-table/线性表_水印.png b/docs/manuscripts/ds/linear-table/线性表_水印.png similarity index 100% rename from docs/ds/linear-table/线性表_水印.png rename to docs/manuscripts/ds/linear-table/线性表_水印.png diff --git a/docs/ds/linear_table.md b/docs/manuscripts/ds/linear_table.md similarity index 100% rename from docs/ds/linear_table.md rename to docs/manuscripts/ds/linear_table.md diff --git a/docs/manuscripts/ds/readme.md b/docs/manuscripts/ds/readme.md new file mode 100644 index 0000000..6e801a4 --- /dev/null +++ b/docs/manuscripts/ds/readme.md @@ -0,0 +1,332 @@ +--- +title: 线性表 +--- + + + + + + + + +## 基础概念和基本操作 + +> 强调线性表是一种逻辑结构,不是存储结构 + + +### 定义 + +线性表是具有相同数据类型的n(n≥0)个数据元素的有限序列。一般表示: + +L=(a1,a2,a3......an) 其中n可以理解为表长(线性表的长度),n=0时候,即表空 + + +- `表头元素`:线性表中唯一的“第一个”数据元素,例如a1 +- `表尾元素`:线性表中唯一的“最后一个”数据元素,例如an + + +重要逻辑特性: + +- 除表头元素外,线性表中每个元素有且仅有一个`直接前驱` +- 除表尾元素外,线性表中每个元素有且仅有一个`直接后继` + +基于此,这种**线性有序的逻辑结构**,使得线性表的特点如下: + +- 元素的**个数有限**(强调有限序列) +- 元素在逻辑上具有**顺序性**,在序列中每个元素都是都有先后次序的 +- 元素都数据元素,**每个元素都是单个元素** +- 元素的**数据类型都相同**(强调相同数据类型),每个数据元素占用相同大小的存储空间 +- 元素具有**抽象性**,仅仅讨论元素之间的逻辑关系,不需要去考虑元素究竟表示的什么内容 + + +> Tips: **线性表是一种逻辑结构**,表示元素之间一对一的相邻关系。**顺序表和链表则指的是存储结构** + + + +### 基本操作 + +- `InitList(&L)`: **初始化表**。构造空的线性表 +- `Length(L)`:**获取表的长度**。返回线性表L的长度,即表中的数据元素个数 +- `LocateElem(L,e)`:**按值查找操作**。在表L中国查找具有给定关键字的元素 +- `GetElem(L,i)`:**按位查找操作**。获取表中第i个位置的元素的值 +- `ListInsert(&L,i,e)`:**插入操作**。在表的第i个位置上插入指定元素e +- `ListDelete(&L,i,&e)`:**删除操作**。删除表中第i个位置的元素,并用e返回删除元素的值 +- `PrintList(L)`:**输出操作**。按照前后顺序(如:1、2....n)输出线性表的所有元素值 +- `Empty(L)`:**判空操作**。当表L为空,则返回true,否则返回false +- `DestoryList(&L)`:**销毁操作**。将线性表销毁,释放线性表L所占用的内存空间(类似:释放内存) + + +线性表是具有相同的数据类型的有限个数据元素组成的,**数据元素是由数据项组成的** + + +## 线性表的顺序表示 + + +### 定义 + +`顺序表`:顺序存储的线性表,**是用一组地址连续的存储单元,依次存储线性表中的数据元素,使得在逻辑上相邻的两个元素在物理位置上也相邻。** + + + + + + +顺序表中的元素的逻辑顺序与实际的物理位置相同 + + + +注意: + +- 线性表中的元素的位序是从1开始的,例如1、2、3... +- 数组中的元素的下标是从0开始的,例如0、1、2... + +```c +# define MaxSize 20 // 定义常量MaxSize 用来声明顺序表的最大长度 + +// 线性表结构体定义【ElemType用来代指顺序表中元素的类型,例如高级语言中的int、string....】 +typedef struct{ + ElemType data[MaxSize]; // 顺序表的元素 + int length; // 顺序表的长度 +}SqList + +``` + +#### 存储分配 + +`静态分配`:数组的大小和空间都是实现确定好的,一旦存储空间占满就会产生溢出,直接导致程序崩溃。(有点内存不够,宕机重启的意思....) + +`动态分配`:存储数据的空间在程序执行过程中通过`动态存储分配语句`分配的,即便是数据空间占满,也可以另外开辟一块更大的空间,来替换原来的存储空间,满足扩充数据空间的目的。(有点动态规划的意思....)最重要的是:**不需要像静态分配那样,一次性地固定线性表的空间和大小** + + + +```c +#define InitSize 100 // 表长度初始化 + + +// 动态分配数组顺序表的结构体定义 +typedef struct{ + ElemType *data; // 动态分配数组的指针 + int MaxSize,length; // 数组的最大容量和当前元素个数 +}SqList; + +``` + +动态分配语句 + +```cpp +// C语言中 + +L.data=(ElemType*)malloc(sizeof(ElemType)*InitSize); + + +// C++ 中 + +L.data=new ElemType[InitSize]; + +``` + +`malloc()函数`: 指针型函数,返回的指针指向该分配域的开头的位置。作用是在内存的动态存储区中分配一个长度为size的连续空间。[百度百科](https://baike.baidu.com/item/malloc%E5%87%BD%E6%95%B0/8582146?fr=aladdin) + +**动态分配不是链式存储,而是属于顺序存储结构**,动态分配的物理结构没有改变,依然是随机存取的方式。只是分配的空间大小可以在运行时决定; + + +#### 顺序表的特点 + + +- 随机访问【这是最主要的特点】,通过存储起始地址和元素序号O(1)时间内访问指定元素。 +- 存储密度高,没有结点只存储数据元素,不像索引存储那样,还需要索引表什么的.. +- 逻辑上相邻的元素物理上也相邻,插入和删除需要移动大量元素 + + + + + +### 基本操作 + + +#### 插入 + +在顺序表L的第i(1≤i≤L.length+1)个位置插入新的元素e + +- 第一步:如果i非法,则直接返回false,插入失败,结束插入过程 +- 第二步:i正常,将表的第i个元素以及后面的所有元素都像有移动一个位置,在腾出来的空位置插入元素e +- 第三步:顺序表插入成功,返回true + +注意:先判空和临界值,提高算法健壮性 + +```cpp + +/* + * @Description: 顺序表的插入操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-02-23 07:48:26 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-02-23 07:48:26 + */ +bool ListInsert(SqList &L, int i, ElemType e){ + + // i非法 i=1 表头 i=L.length+1 表尾巴 + if(i<1||i>L.length+1){ + return false; + } + + // 存储空间满,无法插入 + if(L.length >= MaxSize){ + return false; + } + + // 遍历,将位置元素往后移动,注意从后往前循环,避免值被覆盖 + for(int j=L.length; j>=i;j--){ + L.data[j]=L.data[j-1]; + } + + // 此时,表L中的第i个元素和第i+1元素素值一样,将新元素存入i位置即可 + + // 第i个元素,对应的位置角标为i-1 + L.data[i-1]=e; + + // 表长度加1 + L.length++; + + // 返回插入成功 + return true; +} + +``` + +注意:区别顺序表中的位序和角标; + +**时间复杂度** + +- 最好情况:在表尾插入,元素向后移动循环没有执行,时间复杂度O(1); +- 最坏情况:在表头插入,元素后移循环执行n次,时间复杂度为O(n); +- 平均情况:随机插入,平均次数为:n/2,对应的平均复杂度为O(n); + + +**线性表插入算法的平均时间复杂度为:O(n)** + +> Tips: 需要根据实现代码理解循环为什么是从后往前来实现元素后移,通过for循环可以很明显的看出表尾插入快,表头插入慢 + +#### 删除 + +删除顺序表L中第i(1≤i≤L.length+1)个位置的元素 + +- 成功,返回true,将被删除的元素用引用变量返回; +- 失败,返回false + +```C++ + +/* + * @Description: 顺序表的删除操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-02-23 07:48:26 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-02-23 07:48:26 + */ +bool ListDelete(SqList &L, int i, ElemType &e){ + + // i非法 i=1 表头 i=L.length+1 表尾巴 + if(i<1||i>L.length+1){ + return false; + } + + // 存储空间满,无法插入 + if(L.length >= MaxSize){ + return false; + } + + // 引用变量e赋值 + e=L.data[i-1] + + // 遍历,第i个元素后面的往前移动 + for(int j=i; j<=L.length;j++){ + // 从第i个元素开始,角标从i-1开始 + L.data[j-1]=L.data[j]; + } + + // 此时,表L中的表尾元素和倒数第二个元素值一样,将表的长度-1 + + // 表长度减1 + L.length--; + + // 返回删除成功 + return true; +} + +``` + +从这里来看,删除、插入元素都会涉及到大量的元素的移动(最好情况例外),总结而言: +- 元素从后往前移,循环从前往后遍历 +- 元素从前往后移,循环从后往前遍历 + + +**时间复杂度:** + + +- 最好情况:删除表尾元素,不需要移动任何元素,时间复杂度为O(1); +- 最坏情况:删除表头元素,需要移动除第一个元素外的所有元素,时间复杂度为O(n); +- 平均情况:随机删除,平均需要(n-1)/2,对应的时间复杂度为O(n); + + + +**线性表删除算法的平均时间复杂度为O(n);** + + +#### 按值查找(顺序查找) + +在顺序表L中查找第一个元素值等于e的元素,并返回位序 + + +```cpp +/* + * @Description: 顺序表的按值查找(顺序查找) + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-02-23 07:48:26 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-02-23 07:48:26 + */ +int LocateElem(SqList L,ElemType e){ + int i; + // 循环判断 + for(i=0;i + + + +# 基本概念和基本操作 + +`栈`: 只允许在一端进行插入或者删除操作的**线性表**,`后进先出的线性表`。 + + +- 明确栈是一种线性表 +- 限定栈只能在某一端进行插入或者删除操作 + +![栈的顺序结构](./images/栈的基本结构.png) + +`栈顶`:线性表允许进行插入和删除的一端。 + +`栈底`:不允许进行插入和删除的另外一端,是**固定的**。类似杯底这中概念 + +`空栈`:不含任何元素的空表,也叫**栈空** + + + +基本结构如下: + + + + +在上面的基本结构中,可以假设存在栈S=(a1,a2,a3,a4,a5,a6,a7,a8),很明显 + +- 栈顶元素:a1 +- 栈底元素:a8 + + +栈只能在栈顶进行插入和删除操作 + +- 进栈顺序:a1->a2->a3->a4->a5->a6->a7->a8 +- 出栈顺序:a8->a7->a6->a5->a4->a3->a2->a1 + + +可以得出结论:栈是后进先出(先进后出),即:LIFO(Last In First Out),也可以叫**后进先出的线性表** + + +## 栈的基本操作 + + +- `InitStack(&S)`: 初始化一个空栈`S`,栈顶指针初始化为-1 +- `StackEmpty(S)`: 判断一个栈是否为空,如果栈空则返回`true`,否则返回`false` +- `Push(&S,x)`: 进栈,若栈未满,`x`进栈操作,插入到栈内成为`新的栈顶元素`。 +- `Pop(&S,&x)`: 出栈,若栈非空,出栈操作,**弹出栈顶元素**,用指针`x`进行返回。 +- `GetTop(S,&x)`: 读栈顶元素,若栈`S`非空,用x返回栈顶元素。 +- `ClearStack(&S)`: 销毁栈,释放栈`S`占用的存储空间。 + + + +> Tips: `&`是C++特有的,可以用来表示引用调用,类似`传址目的`,可以类比指针。 当然,在C语言中*代表指针,指向存储地址,也是具有`传址目的` \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/2.栈的顺序存储结构.md b/docs/manuscripts/ds/栈和队列/2.栈的顺序存储结构.md new file mode 100644 index 0000000..af301b4 --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/2.栈的顺序存储结构.md @@ -0,0 +1,232 @@ + + + + + +# 栈的顺序存储结构 + + +`顺序栈`:栈的顺序存储,利用一组地址连续的存储单元存放自栈底到栈顶的所有元素,同时**附加一个用来指向当前栈顶位置的指针** + +> 指针指向栈顶(top)主要是因为栈在线性表的一端操作,操作的那端就是栈顶,方便操作。 + + +### 顺序栈的存储类型 + +```C++ +// 定义栈中元素的最大个数 +# define MaxSize 50 + +// 结构体定义 +typedef struct{ + ElemType data[MaxSize]; // 存放栈中元素 + int top; // 栈顶指针 +}SqStack; + +``` + +假设存在顺序栈S,则: + +- 栈顶指针:S.top 初始化时设置S.top=-1 +- 栈顶元素:S.data[S.top],其中S.top为栈顶指针 +- 进栈操作:栈不满时,栈顶指针+1,再送值到栈顶元素 +- 出栈操作:栈非空时,先取栈顶元素值,再将栈顶指针-1 +- 栈空条件:S.top=-1 +- 栈满条件:S.top=MaxSize-1 +- 栈长:S.top+1 + + +> Tips: 进栈先移动指针,避免占满,元素无法添加,出现外溢;出栈先取栈顶元素,保证指针永远指向栈顶。 + + + +顺序栈的存储结构体定义可以很明显看出,顺序栈的入栈操作会受到数组上界(MaxSize)的约束。 + +**当对栈的最大使用空间估计不足时,容易出现栈上溢(外溢),需要主动向用户报告反馈,避免出现错误;** + + + +### 顺序栈的基本运算 + + +- `InitStack(&S)`: 初始化一个空栈`S`,栈顶指针初始化为-1 +- `StackEmpty(S)`: 判断一个栈是否为空,如果栈空则返回`true`,否则返回`false` +- `Push(&S,x)`: 进栈,若栈未满,`x`进栈操作,插入到栈内成为`新的栈顶元素`。 +- `Pop(&S,&x)`: 出栈,若栈非空,出栈操作,**弹出栈顶元素**,用指针`x`进行返回。 +- `GetTop(S,&x)`: 读栈顶元素,若栈`S`非空,用x返回栈顶元素。 +- `ClearStack(&S)`: 销毁栈,释放栈`S`占用的存储空间。 + + +#### 初始化 + + +`InitStack(&S)`: 初始化一个空栈`S`,栈顶指针初始化为-1 + +```C++ + +void InitStack(&S){ + // 栈顶指针-1 + s.top=-1; +} + +``` + + +#### 栈空判断 + +`StackEmpty(S)`: 判断一个栈是否为空,即:栈顶指针是否为-1,如果栈空则返回`true`,否则返回`false` + +```C++ + +bool StackEmpty(S){ + if(S.top==-1){ + // 栈空 + return true; + }else{ + // 栈非空 + return false; + } +} + +``` + + +#### 进栈 + + +`Push(&S,x)`: 进栈,若栈未满,`x`进栈操作,插入到栈内成为`新的栈顶元素`。 + +```C++ + +bool Push(SqStack &S,ElemType x){ + if(S.top==MaxSize-1){ + // 栈满,返回false,元素无法进行进栈操作 + return false; + }else{ + // 可进栈,栈顶指针+1,再元素入栈 + S.data[++S.top]=x; + + // 入栈成功 + return true; + } +} + +``` +注意: + +- 进栈先移动栈顶指针+1,再操作入栈元素 +- `++i`是简写,先对变量i进行递加操作,再进行使用,即:先加后用 + +#### 出栈 + +`Pop(&S,&x)`: 出栈,若栈非空,出栈操作,**弹出栈顶元素**,用指针`x`进行返回。 + +```C++ + +bool Pop(SqStack &S,ElemType &x){ + if(S.top==-1){ + // 栈空,无栈顶元素可出栈,返回false + return false; + }else{ + // 栈非空,先元素出栈,再进行指针-1 + x=S.data[S.top--]; + + // 出栈成功,返回true + return true; + } +} + +``` + +注意: + +- 出栈操作,先让元素出栈,获取栈顶元素,再移动指针-1 +- `i--`是先使用变量i,再对变量做递减操作,即:先用后加(减) + + + +#### 读(获取)栈顶元素 + +`GetTop(S,&x)`: 读栈顶元素,若栈`S`非空,用x返回栈顶元素。 + +```C++ + +bool GetTop(SqStack S,ElemType &x){ + + if(S.top==-1){ + // 栈空,无栈顶元素,返回false + return false; + }else{ + + // 通过栈顶指针,获取栈顶元素,赋值给变量x + x=S.data[S.top]; + + // 读取栈顶元素成功,返回true + return true; + } +} + +``` + + + +**上面的这些操作都是基于栈顶指针初始化为`-1`的情况** + +当栈顶指针初始化为`S.top=0`,相关操作操作会有区别: + +- 入栈: `S.data[S.top++]=x` +- 出栈: `x=S.data[--S.top]` + + +**同时, 栈空、栈满条件也会有变化,要仔细对比揣摩** + + + +### 共享栈 + + +`共享栈`:利用栈底位置相对不变的特性,可以让两个顺序栈共享一个`一维存储空间`,将两个栈的栈底分别设置在共享空间的两端,两个栈顶则向共享空间的中间延伸 + +>Tips: 类似头对头,一致对外这种感觉,噗呲哈哈 + +![顺序栈共享存储空间](./images/顺序栈共享存储空间.png) + + +在上面的共享栈结构图中,两个栈(0、1号顺序栈)的栈顶指针都指向栈顶元素 + +- 0号栈栈顶指针`top=-1`时,0号栈为空 +- 1号栈栈顶指针`top=MaxSize`时,1号栈为空 + +当且仅当两个栈的栈顶指针相邻(`top1-top0=1`),可以判断共享栈栈满 + + +#### 进栈 + + +> 进栈:先移动指针,后进行赋值 + + +- 当0号栈进栈时,0号栈栈顶指针top0`先加1后赋值` +- 当1号栈进栈时,0号栈栈顶指针top1`先减1后赋值` + +#### 出栈 + +> 出栈:先进行赋值,后移动指针 + + +- 当0号栈进栈时,0号栈栈顶指针top0`先赋值后减1` +- 当1号栈进栈时,0号栈栈顶指针top1`先赋值后加1` + + + +共享栈能够更有效的利用存储空间,两个栈空间进行相互调节。只有当这个存储空间(即:共享空间)被占满时才会发生上溢。存取数据的时间复杂度都为O(1),在栈顶操作。 + + +**共享栈对存取效率没有什么影响** \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/3.栈的链式存储结构.md b/docs/manuscripts/ds/栈和队列/3.栈的链式存储结构.md new file mode 100644 index 0000000..0e82361 --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/3.栈的链式存储结构.md @@ -0,0 +1,140 @@ + + + +# 栈的链式存储结构 + +`链栈`: 采用链式存储的栈 + +`栈满`:对于链栈来说,是基于链式存储的,基本不存在栈满的情况,除非内存已经没有使用空间了。 + +`栈空`:对于空栈来说,链表原来的定义是头指针指向空,那么链栈的空其实就是`top=NULL`,链栈元素总数为0 + + +栈只是栈顶在做插入和删除操作,栈顶应该放在单链表的头部,所以单链表中的头结点也就失去了意义。 + +**通常对于链栈来说,是不需要头结点的,当然也存在带头结点的链栈** + + +![](./images/栈的链式存储结构.png) + + +栈的链式存储类型: + +```C++ + +// 链栈类型定义【基础】 +typedef struct LinkNode{ + ElemType data; // 栈元素结点数据域 + struct LinkNode *next; // 栈元素结点指针域 +} *LinkStack; + +// 更为详细的定义 + +typedef struct StackNode +{ + int data;//结点数据域 + struct StackNode* next;//结点指针域 +}StackNode,* Linktop; + +//链栈的数据结构 +typedef struct LinkStack +{ + Linktop top; //栈顶结点,定义了一个指向上个结构体的指针 + int count;//元素个数 +}LinkStack; + +``` + +### 优点 + +- 便于多个栈共享存储空间 +- 不存在栈满上溢的情况,避免程序因溢出导致出错 +- 有效的提高存取效率 + + +### 进栈 + +- 如果链栈不存在,则栈满,入栈操作失败,返回false; +- 如果链栈存在,进行单链表的结点插入操作,移动指针,结点元素赋值,再将结点压入链栈中,移动链栈栈顶指针,最后链栈元素总数+1,返回true + + +```C++ + +/* + * @Description: 基于单链表链栈的进栈操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 07:36:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 11:39:16 + */ +bool linkStackPushNode(LinkStack* linkStack,int e){ + + // 判断链栈是否存在 + if (!linkStack){ + //链栈不存在,无法进栈操作,返回false + return false; + } + // 开辟栈结点元素内存控件 + StackNode* node = (StackNode*)malloc(sizeof(StackNode)); + // 新结点指针域指向链表,即栈顶指针位置,元素加入链表 + node->next = linkStack->top; + // 新结点数据域赋值 + node->data = e; + // 元素进栈,移动栈顶指针,指向新入栈的元素 + linkStack->top = node; + // 链栈元素总数+1 + linkStack->count++; + //链栈入栈成功,返回true + return true; +} +``` + +### 出栈 + +- 如果链栈不存在,或者为空栈,则无法进行出栈操作,返回false +- 如果链栈满足出栈条件,则通过栈顶指针获取到链栈栈底结点,将其数据域赋值给变量e,移动栈顶指针指向待出栈元素的后继结点,同时释放待出栈元素的内存空间,链栈元素总数-1 ,出栈成功,返回true. + + +```C++ + +/* + * @Description: 基于单链表链栈的出栈操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-03-04 23:38:04 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2020-03-04 23:39:16 + */ +bool linkStackPopNode(LinkStack* linkStack,int *e){ + // 判断链栈是否存在及是否为空 + if (!linkStack || linkStack->count==0){ + //出栈失败,返回false + return false; + } + // 获取栈顶元素结点 + StackNode* node = stack->top; + + // 结点元素数据域赋值给变量e + *e = linkStack->data; + // 移动栈顶指向,栈顶指针指向待出栈结点的后继结点 + linkStack->top = node->next; + // 变量e已被赋值,释放链栈出栈元素的内存控件 + free(node); + // 链栈元素个数-1 + linkStack->count--; + // 出栈成功,返回true. + return true; +} + +``` + + +以上是基于单链表的链栈入栈、出栈操作,很明显**时间复杂度都为O(1)**,重点`注意移动指针,保持不断链` \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/4.队列的基本概念和基础操作.md b/docs/manuscripts/ds/栈和队列/4.队列的基本概念和基础操作.md new file mode 100644 index 0000000..c4cf309 --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/4.队列的基本概念和基础操作.md @@ -0,0 +1,53 @@ + + + + +# 队列的基本概念和基础操作 + + +### 基本概念 + +`队列`:和栈一样,是一种操作受限制的线性表,只允许在表的一端进行插入,在表的另外一端进行删除,简称为`队`,常记作:`Queue` + +`入队`: 向队列中插入元素,也叫做`进队` + +`出队`: 删除队列元素,也叫做`离队` + + +![](./images/队列的基本结构.png) + +结合生活中排队的经验,在群体素质高、无人插队的情况下(`薛定谔排队`,噗呲,哈哈哈),**一般最早排队的也是最早离队的**,和栈的`后进先出`不一样的是,队列是`先进先出`的,即:First In Frist Out + +> Tips +> - 栈:又叫做后进先出的线性表 +> - 队列:又叫做先进先出的线性表 + + + +`队头`:允许进行删除操作的一端,也叫做`队首`,常记作:`Front` + +`队尾`:允许进行插入操作的一端,常记作:`Rear` + +`空队列`:不含任何元素的空表,注意这个表是指`线性表` + + + + +### 基础操作 + + +> 和栈一样,队列是操作受限的线性表,具有`先进先出`的特性,不是任何对线性表的操作都可以作为队列的操作。例如:无法随便读取到队列中间的某个数据,需要将前面的元素先出队 + + +- `InitQueue(&Q)`: 初始化一个队列,构造空队列Q +- `QueueEmpty(Q)`: 判断队列是否为空,队空返回true,否则返回false +- `EnEmpty(&Q,x)`: 入队,如果队列Q未满,将x入队,成为新的队尾元素 +- `DeEmpty(&Q,&x)`: 出队,如果队列Q非空,删除队头元素,复制给x返回 +- `GetHead(Q,&x)`: 读取队头元素,如果队列Q非空,则将队头元素赋值给x diff --git a/docs/manuscripts/ds/栈和队列/5.队列的顺序存储结构.md b/docs/manuscripts/ds/栈和队列/5.队列的顺序存储结构.md new file mode 100644 index 0000000..99cbfaf --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/5.队列的顺序存储结构.md @@ -0,0 +1,346 @@ + + + +# 队列的顺序存储结构 + + +> 队列的顺序实现是指分配一块连续的存储单元用来存放队列中的元素,并且附加两个指针。 +> - `front指针`: 指向队头元素的位置 +> - `rear指针`: 指向队尾元素的位置 + +队列顺序存储类型: + +```C++ +// 队列最大存储元素个数 +#define MaxSize 50 + +// 结构体定义 +typedef struct { + // 存放队列元素 + ElemType data[MaxSize]; + // 队头指针和队尾指针 + int front,rear; +} SqQueue; +``` + + +假定: + +- 队头指针指向队头元素 +- 队尾指针指向队尾元素的下一个位置 + +则: + +- 初始状态(**队空条件**):`Q.front`===`Q.rear`===0 +- 入队操作:队不满时,先赋值给队尾元素,再移动队尾指针+1 +- 出队操作: 队不空时,先取队头元素值,再移动队头指针+1 + + + +![](./images/入队.png) + +在空队列中,初始状态为`Q.front===Q.rear==0`,当元素a入队时,队尾指针rear后移+1,入队成功后,`Q.front==0`、`Q.rear==1`,在队不满的情况下进队,都是`先赋值给队尾元素,再移动队尾指针rear+1`,通过上面的图宝贝可以看到,队列被元素打满的时: + +- 在这个进队的过程中,没有元素出队,队头指针并没有做改变,`Q.front==0` +- 进队操作直接影响队尾指针的变化,队列满的时候`Q.rear==Maxsize` + +> Tips: MaxSize为队列结构体定义中,最大存储元素个数哦~ + + +![](./images/出队.png) + +进队说完了,那给宝贝来说说出队吧。以上图为例,队列中`Q.rear==Maxsize`、`Q.front==0`;当出现元素在队首出队,就会直接影响队首指针,从上面的流程上看: + +- 元素出队,front指针后移+1,在队不空的情况下,操作为:`先取队头元素值,再移动队头指针+1` + +- 当队列中的元素都陆续出队,抛弃了宝贝(都是渣男,噗呲,哈哈哈),指针会是:`Q.rear==Q.front==MaxSize` + + + +从上面两张图中,我们来思考: + +> 前面队空条件为:`Q.front===Q.rear===0`,那能用`Q.rear==MaxSize`来表示队满嘛? + + +傻瓜,你在瞅瞅前面的图,明显存在`Q.rear==MaxSize`,但队列确实空的情况呀。队满要灵活判断,可不要死记书上总结的。书上说的很多结论都是有前提的,老师记结论不记前提容易张冠李戴、含糊不清的呀~ + + + + + + +很显然,也存在下面这种情况: + +- 队头指针指向队头元素的前一个位置 +- 队尾指针指向队尾元素 + +此时的入队、出队过程就宝贝自己去画流程图咯 + + + +### 循环队列 + +在上面的顺序队列中,当队满后进行出队列,由于顺序队列出队只在队首进行操作,并且只会修改队首指针,这时候就会出现队尾指针一直`Q.rear===MaxSize`情况,就如下: + + +![队列队满情况分析](./images/队列队满情况分析.png) + +可以很明显的看到,明明队列不满,但是由于进队列只能在队尾操作,因此不能进行进队操作;通常在这种情况下入队就会出现“上溢出”。 + +> 需要明确的是:上溢出并不是真正的溢出,只是表明在顺序队列中队不满却无法入队的情况,是一种假的”溢出“ + + + + +这种情况在顺序队列中是非常常见的,也是顺序队列的一大缺点。为了克服这个缺点,计算机先贤们总是能够有很多很好的办法,这里不得不佩服!!,所以就有了循环队列,**一个将顺序队列臆想为一个环状的空间** + + +> 很多时候就是这样,为了解决一个问题,从而衍生出一个新的知识 + + +`循环队列`:把顺序队列臆想为一个环状的空间,将存储队列元素的表从逻辑上看做为一个环 + + + +![](./images/循环队列初始化.png) + + +当队首指针`Q.front=MaxSize-1`后,再有元素`出队`就前进一个位置自动到位置0了【注意:可以结合时钟来理解,一圈转完了】 + + +- 初始时:`Q.front=Q.rear=0` +- 队首指针进1: `Q.front=(Q.front+1)%MaxSize` +- 队尾指针进1: `Q.rear=(Q.rear+1)%MaxSize` +- 队列长度: `(Q.rear+MaxSize-Q.front)%MaxSize` + + +> 是不是理解起来有点抽象,其实我最开始学到这里的时候,也不明白为什么要用`除法取余运算(%)`来实现。后来我看看了手机上的时钟指针,一圈两圈三圈的转,好像就开始悟了...其实这种取余操作在计算机知识体系中还是非常常见的,例如:组成原理中将会学到的补码,据说idea就是来源于时钟.. + + +**和时钟一样,顺时钟进行时间变换,在出队、入队时,队首、队尾指针都是按顺时针方向进1** + + +![](./images/循环队列入队.png) + +如上图,循环队列从最开始初始化为空队列时:`Q.front==Q.rear==0`,经过元素a入队,队尾指针顺时针前移`Q.rear+1`,到元素a、b、c、d陆续入队,就好像时钟转完了一圈,循环队列已满,此时发现:`Q.front==Q.rear==0`在队满时候依然成立,所以结合前面提到的初始化对空条件:`Q.front==Q.rear==0`,用`Q.front==Q.rear`来区分`队空`和`队满`是非常不合适的。 + + + + +#### 如何区别队空还是队满 + +> 为了很好的区别循环队列的`队空`还是`队满`的情况,一般有三种处理方式. +##### 牺牲一个单元来区分队空和队满 + +这种方式**要求在入队时少用一个队列单元**,是一种比较普遍的做法。约定: + +**队头指针在队尾指针在队尾指针的下一个位置作为队满标志【重要】** + +- 队满条件:`(Q.rear+1)%MaxSize==Q.front` +- 队空条件:`Q.front==Q.rear` +- 队列中元素个数:`(Q.rear+MaxSize-Q.front)%MaxSize` + + +##### 类型中增设表示元素个数的数据成员 + +这种就很直接了,直接和MaxSize去比较,就可以有: + +- 队空条件: `Q.count=0` +- 队满条件: `Q.count=MaxSize` + + +值的注意的是:在这个前提下,不论是`队空`还是`队满`,对会存在`Q.front=Q.rear`,这个可以通过前面方案解决。 + +##### 类型中增设tag数据成员标记 + +通过添加tag标记的方式,区分`队空`还是`队满` + +- `tag==0`的情况下,如果因为删除导致`Q.front==Q.rear`,则队空; +- `tag==1`的情况下,如果因为插入导致`Q.front==Q.rear`,则队满; + +可能你会对上面的这两种情况有迷惑,说实话我第一次看的时候,也挺迷惑的,这里我按照我的理解来解释一下: + +> 在循环队列中增加tag数据成员标记,tag的主要作用: +> - 在有元素入队的时候,设置tag=1 +> - 在有元素出队的时候,设置tag=0 + + +对应的算法实现: +```C++ +// 入队算法 +// 尾插法:Q.data[Q.rear]=x;Q.rear=(Q.rear+1)%Maxsize;Q.tag=1 +// 队空条件:Q.front== Q.rear且Q.tag==0 +int EnLoopQueue(SqQueue &Q, ElemType x){ + if(Q.front==Q.rear&&Q.tag==1){ + return 0; + } + Q.data[Q.rear]=x; + Q.rear=(Q.rear+1)%MaxSize; + Q.tag=1; + return 1; +} + + + +// 出队算法 +// 头结点删除:x=Q.data[Q.front];Q.front=(Q.front +1)%Maxsize;Q.tag=0 +// 队满条件:Q.front == Q.rear且Q.tag=1 +// 注意:当删除之后链表为空时,还需增加一步,将尾指针指向头结点 +int DeLoopQueue(SqQueue &Q, ElemType &x){ + if (Q.front==Q.rear&&Q.tag==0){ + return 0; + } + x=Q.data[Q.front]; + Q.front=(Q.front+1)%MaxSize; + Q.tag=0; + return 1; +} + +``` +##### + + +### 代码实现 + + +#### 初始化空队列 + + +```C++ +/* + * @Description: 循环队列初始化,队列为空 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2019-09-27 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-18 22:15:06 + */ +void InitLoopQueque(&Q){ + Q.front=Q.rear=0; +} +``` + +#### 队列是否为空 + +```C++ +/* + * @Description: 判断循环队列是否为空 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2019-09-27 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-18 22:15:06 + */ +bool isEmpatyLoopQueue(Q){ + // 注意循环队列对空条件:Q.rear=Q.front + if(Q.rear=Q.front){ + // 队空 + return true; + }else{ + // 非空 + return false; + } +} + +``` + + +#### 入队操作 + +```C++ +/* + * @Description: 循环队列元素入队 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2019-09-27 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-18 22:15:06 + */ +bool EnLoopQueue(SqQueue &Q, ElemType x){ + // 判断循环队列是否已满 注意判断条件:(Q.rear+1)%MaxSize===Q.front + if((Q.rear+1)%MaxSize===Q.front){ + // 循环队列满 + return false; + } + // 队列未满,可进行入队操作【队尾进行】 + + // 队尾指针指向的数据域进行赋值 + Q.data[Q.rear]=x; + + //队尾指针后移+1【类似时钟的顺时针方向】 + Q.rear=((Q.rear+1)%MaxSize); + + // 入队成功,返回true + return true; +} + +``` + +#### 出队操作 + + +```C++ + +/* + * @Description: 循环队列元素出队 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2019-09-27 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-18 20:32:18 + */ +bool DeLoopQueue(SqQueue &Q, ElemType &x){ + + // 判断循环队列是否为空队列 + if(Q.rear==Q.front){ + + // 队列为空,无法进行出队操作,返回false + return false; + } + + // 循环队列非空,元素可出队【队首操作】 + + // 将循环队列队首指针指向的元素的数据域赋值给变量x + x=Q.data[Q.front]; + + // 移动队首指针,顺时针后移+1 + Q.front=(Q.front+1)%MaxSize; + + // 出队成功,返回true + return true; +} + +``` + +#### 获取队头元素 + +```C++ +/* + * @Description: 获取循环队列队头元素 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2019-09-27 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-03-18 20:15:33 + */ +bool GetLoopQueueHead(SqQueue &Q, ElemType &x){ + // 判断循环队列是否为空队列 + if(Q.front==Q.rear){ + // 队列为空,没有队头元素,返回false + return false; + }else{ + // 获取队头指针指向元素的数据域,赋值给x + x=Q.data[Q.front]; + + // 获取队头元素成功,返回true + return true; + } +} +``` \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/6.队列的链式存储结构.md b/docs/manuscripts/ds/栈和队列/6.队列的链式存储结构.md new file mode 100644 index 0000000..67a1150 --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/6.队列的链式存储结构.md @@ -0,0 +1,240 @@ + + + +# 队列的链式存储结构 + +`链队列`:和顺序队列一样,基于队列的链式表示叫做`链队列`,实际上为:**一个同时带有队头指针和队尾指针的单链表** + +- 头指针指向队头结点 +- 尾指针指向队尾结点(单链表的最后一个结点) + + +这里复习下顺序队列的定义,进行比较学习 + +> 队列的顺序实现是指分配一块连续的存储单元用来存放队列中的元素,并且附加两个指针。 +> - 队头指针指向队头元素 +> - 队尾指针指向队尾元素的下一个位置 + +![](./images/不带头结点的链式队列.png) + + +队列的链式存储结构: + + +```C++ +// 链式队列节点定义 +typedef struct{ + // 结果点数据域 + ElemType data; + // 结点指针域 + struct LinkNode *next; +}LinkNode; + +// 链式队列定义 +typedef struct{ + // front 队头指针,rear 队尾指针 + LinkNode *front,*rear; +}LinkQueue; + +``` + +结合上面的`不带头结点`链式队列结构图,假设存在链式队列 + +- 队空: `linkQueue.front==NULL`且`linkQueue.rear==NULL` +- 出队: 先判断队列是否为空,非空队列则取出队头元素,从链表中闪出去,`队头指针Q.front指向下一个结点`,如果出队的结此为尾结点,出队后队空,需要将Q.front和Q.rear都置为NULL +- 入队: 建立一个新的结点,将新的结点插入到链表的尾部,修改队尾指针Q.rear指向新插入的结点。如果原队列为空,需要将队首指针也指向该结点 + +仔细思考上面的入队、出队操作,都需要考虑队空的情况下的特殊处理,不带头结点的队列导致队空队首和队尾指针都为NULL,比较麻烦;结合之前整理、学习过的单链表,套用一下先贤的思路,也整上一个头结点,就会发现容易处理很多; + +![](./images/带头结点的链式队列.png) + +链式队列加上头结点后,之前较为复杂的入队、出队操作就统一起来了。 + +- 队空:`Q.front==Q.rear`,都指向头结点,一般数据域可以为空 +- 出队:判断队列是否为空,队列非空则在队首移动指针,将队首指针指向下一个元素。如果队列中就一个元素,则出队后将成为空队,`Q.rear==Q.front`,最后释放元素内存空间。 +- 入队:将元素插入队尾,移动队尾指针,即便为空队列入队,由于队列带有头结点,此时就很好的避免操作队首指针了。 + + +特别注意: + +- 用单链表表示的链式队列非常适合频繁出队、入队、元素变化大的场景 +- 不存在队满情况,也不会出现溢出情况; +- 链式队列不会出现存储分配不合理、“溢出”的情况,内存动态分配 + +### 基本操作 + +> Tips: 基于带头结点链式队列的基础操作 + +#### 队列初始化 + +```C++ + +/* + * @Description: 链式队列初始化 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-06-27 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-02-18 22:15:06 + */ +voide InitLinkQueue(LinkQueue &Q){ + + // 创建头结点 + Q.front=Q.rear=(LinkNode*)malloc(sizeof (LinkNode)); + + // 头结点的指针域指向的下一个结点为空 + Q.front->next=NULL; +} +``` + +注意这个初始化操作,我第一次看的时候,非常不理解为什么在队首指针和队尾指针都指向已经创建好的头结点后,突然写一行`Q.front->next=NULL;`,后来的的理解是: + +> 链式队列,本质是基于单链表的队列,那带头结点的链式队列,其实强调的也就是单链表要带头结点。队列的队首指针和队尾指针确定指向单表的队首和队尾就ok;初始化的时候,带头结点的单链表实质就只有一个头结点。而此时的链式队列,需要将队首指针和队尾指针指向单链表的头结点就行,好像到这里就完了。但是这样却忽视了单链表,只是注重的队列的front和rear指针。单链表的结点元素是分数据域和指针域的,即便是头结点的数据域可以不存什么(当然也常会存一些链表信息什么的),此处的`Q.front->next=NULL`就是用来处理链表的头结点的指针域的,让其指向下一个单链表元素为空,这里是非常需要处理的,非常细节! + +#### 判断队空 + +```C++ + +/* + * @Description: 判断链式队列是否为空 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-06-27 14:24:22 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-02-16 22:15:06 + */ +bool IsEmptyLinkQueue(LinkQueue Q){ + if(Q.front==Q.rear){ + // 队首、队尾指针指向同一个结点内存地址,队空 + return true; + }else{ + // 非空 + return false; + } +} +``` + +#### 入队 + + +```C++ +/* + * @Description: 链式队列入队操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-06-46 14:17:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-02-18 22:15:06 + */ +void EnLinkQueue(LinkQueue &Q, ElemType x){ + + //创建入队结点元素 + node=(LinkNode *)malloc(sizeof(LinkNode)); + + // 赋值给结点数据域 + node->data=x; + // 单链表中结点的指针指向下一个元素,为空 + node->next=NULL; + + // 队尾进队,将结点node和队尾结点链接起来,确保不断链 + Q.rear->next=node; + // 修改队尾指针,指向新入队的结点node + Q.rear=node; +} + +``` + + +#### 出队 + +```C++ + +/* + * @Description: 链式队列出队操作 + * @Version: Beta1.0 + * @Author: 【B站&公众号】Rong姐姐好可爱 + * @Date: 2020-05-18 11:25:28 + * @LastEditors: 【B站&公众号】Rong姐姐好可爱 + * @LastEditTime: 2021-02-22 06:15:06 + */ +bool DeLinkQueue(LinkQueue &Q, ElemType &x){ + + // 判断队列是否为空 + if(Q.front==Q.rear){ + // 队列为空,没有元素出队 + return false; + } + + // Q.front指向单链表的头结点,出队需要出单链表的除头结点外的第一个结点(头结点的下一个结点:Q.front->next) + temp=Q.front->next; + + // 变量x赋值 + x=temp->data; + + // 修改单例表的头指针,指向链表中待删除元素的下一个元素 + Q.front->next=temp->next; + + // 队尾指针和队首指针的下一个结点重合,表示当前链式队列只有一个元素,删除后,队列为空 + if(Q.rear==temp){ + // 链表中队首、队尾指针重合,队列为空 + Q.rear=Q.front; + } + + // 释放删除元素的内存空间,注意,这里释放的是头结点的下一个结点 + free(temp); + + // 出队成功 + return true; +} + +``` + +出队的时候明显有些绕,需要明确队列中头结点的存在,出队出的是单链表中头结点的后一个结点,同时要确保整个过程`不断链` + +![](./images/链式队列出队.png) + + + +### 双端队列 + +`双端队列`: 允许在两端都可以进行入队和出队操作的队列,元素的逻辑结构仍然是线性结构 + +![](./images/双端队列.png) + +**双端队列的两端分别称为`前端`和`后端`,两端都可以`入队`和`出队`** + +- 进队:前端进的元素排列在队列中后端进的元素的前面,后端进的元素排列在队列前端进的元素后面; +- 出队:无论是前端还是后端出队,先出的的元素排列在后出的元素的前面 + + +在双端队列的基础上,还衍生出: + +- `输入受限的双端队列`:允许在一端进行插入和删除操作,但在另外一端只允许进行删除的双端队列 +- `输出受限的双端队列`:允许在一端进行插入和删除曹组,但在另外一端只允许进行插入的双端队列 + + +当然,如果`限定双端队列从某个断点插入的元素只能从该端点删除`,那么此时的双端队列就演变为两个栈底相邻的栈了。 + + + + +### 队列的补充 + +- 最适合用来链队的链表是:`带队首指针和队尾指针的非循环单链表` + +- 栈和队列的逻辑结构都是线性表,存储结构可能是顺序的(顺序栈、顺序队列),也可能是链式的(链栈、链队) +- 不论是顺序存储还是链式存储,**栈和队列都只能进行顺序存取(本质是线性表)**。数组是可以做到随机存取(本质是顺序表) +- 队列先进先出的特性:`先进队列的元素先出队列,后进队列的元素后出队列` + + +特别注意: + +队列用链表形式存储时,删除元素,需要从队头删除,一般情况下,仅仅修改头指针,但是如果此时队列中 +仅有一个元素,则尾指针也是需要被修改的。**因为队列中只有一个元素时,删除后队列为空,需要修改尾指针为:`rear=front`** \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/7.栈和队列的应用.md b/docs/manuscripts/ds/栈和队列/7.栈和队列的应用.md new file mode 100644 index 0000000..7851862 --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/7.栈和队列的应用.md @@ -0,0 +1,138 @@ + + + + + +# 栈和队列的应用 + +> Tips: 这里不会做过多文字介绍相关应用,具体需要自己看书、查资料揣摩 + +### 栈的应用 + +- 括号匹配 +- 表达式求值 +> 表达式求值是程序设计语言编译中一个最基本的问题,类似有前缀、中缀、后缀表达式转换等典型问题。 +- 递归 + +这里重点总结下递归,递归非常重要,是一种很经典的程序设计方法 + +> 递归的简单定义: 如果在一个函数、过程或数据结构的定义中又应用了自身,那么这个函数、过程或者数据结构称为递归定义的,简称递归。 + + + +递归通常把一个大型的复杂问题,层层转化为一个与原问题相似的规模较小的问题来求解。 + +**递归策略只需要少量的代码就可以描述出解题过程所需要的多次重复的计算,很大程度上减少了程序的代码量,当时通常情况下,递归的效率并不是很高** + + +经典的斐波拉切数列,可以用递归来实现: + + +```C++ + +// 定义递归函数,实现斐波拉切数列 + +int Fibonacci(n){ + if(n==0){ + return 0; + }else if(n==1){ + return 1; + }else{ + // 调用Fibonacci函数,进行递归 + return Fibonacci(n-1)+Fib(n-2); + } +} + + +``` + +上面很基础的代码,是分`n=0`和`n=1`的情况,先进行过滤,其他情况下则进行递归,其实在日常开发中,经常会有简化的函数封装 + + +```C++ + +// 定义递归函数,实现斐波拉切数列 + +int Fibonacci(n){ + if(n<2){ + return n; + }else{ + // 调用Fibonacci函数,进行递归 + return Fibonacci(n-1)+Fib(n-2); + } +} + +``` + +上面的简化,则需要程序考虑变量n是整数。 + +当然,前面有说道:**通常情况下,递归的效率并不搞**,主要原因就是递归通过返回调用自己本身,导致往往时间复杂度较高。 + +可以采用空间换时间的思路,来降低算法的时间复杂度 + +```C++ +// 使用非递归实现 +int Fibonacci(int n) { + if(n < 2) + return n; + int f = 0, g = 1; + int result = 0; + + // 迭代 + for(int i = 1; i < n; i++){ + result = f + g; + f = g; + g = result; + } + return result; +} + +// 利用数组,空间换时间 +int Fibonacci(n){ + // 注意溢出 + int arr[100]={0,1,1} + + // 叠加,结果存放在数组中 + for(let i=3;i<=n;i++){ + arr[i]=arr[i-1]+arr[i-2] + } + return arr[n] +} + +``` + + +必须注意递归模型不能是循环定义的,满足条件: + +- 递归表达式(递归体) +- 边界条件(递归出口),即:算法结束条件 + + +递归的精髓在于是否能够将原来的问题转化为属性相同但规模较小的问题。有点类似实现目标过程中,将大目标转化为小目标(1亿....)来解决,噗呲啊哈哈哈 + +**递归次数过多容易造成栈溢出,效率不高的主要原因是递归调用过程中包含很多重复的计算** + + +### 队列的应用 + +- 层次遍历 + +> 例如:二叉树的遍历 + +- 计算机系统 + + +队列在计算机系统中的应用非常广泛,作用: + +- 解决主机和外部设备之间速度不匹配的问题(例如:内存和打印机) +- 解决由多用户引起的资源竞争问题(例如:操作系统中的进程调度...) + + +其实,队列在计算机系统的中应用, 在看完操作系统那本书后,就会很好理解,建议学到这里,也去翻翻操作系统,汤晓丹那本很经典哟... \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/8.特殊矩阵的压缩存储.md b/docs/manuscripts/ds/栈和队列/8.特殊矩阵的压缩存储.md new file mode 100644 index 0000000..cca5a3c --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/8.特殊矩阵的压缩存储.md @@ -0,0 +1,67 @@ + + + +# 特殊矩阵的压缩存储 + +> 这部分知识我个人觉得以了解为主,复习、学习的时候还是要以前面的部分为主! + +矩阵在`计算机图形学`、`工程计算`中占有举足轻重的地位。 + + +### 数组的定义 + +`数组`: 由n(n≥1)个相同类型的数据元素构成的有限序列。 + +每个数据元素称为一个数组元素,同时每个元素受n个线性关系的约束,**每个元素在n个线性关系中的序号称为元素的`下标`**,称为该数组为n的数组。 + +数组和线性表的关系: +- 数组是线性表的推广。 +- 数组一旦被定义,维数和维界就不再改变。 +- 除了结构的初始化和销毁外,数组只会有存取元素和修改元素的操作。 + + +一维数组可以看做是一个线性表 + +二维数组可以看做元素是线性表的线性表 + +.... + + +### 矩阵的压缩存储 + + +`压缩存储`:多个值相同的元素只分配一个存储空间,对零元素不分配存储空间---->节省存储空间。 + +`特殊矩阵`:具有很多相同矩阵元素或零元素,并且这些相同矩阵元素或零元素的分布有一定规律性的矩阵。 + +- 对称矩阵 +- 上、下三角矩阵 +- 对角矩阵(带状矩阵) +- .... + +这里如果学过线性代数这本书,其实也就很好理解(赶紧去把数学知识捡起来鸭,噗呲哈哈啊哈) + +`稀疏矩阵`:矩阵元素个数s相对于矩阵中非零元素的个数t来说非常多、差距非常大,即`s>>t的矩阵`可以叫`稀疏矩阵` + + +注意: + +- 常规方法来存储稀疏矩阵,会想当浪费存储空间,所以稀疏矩阵只需要存储非零元素 +- 通常非零元素的分布是没有规律的,除了存储非零元素外,还需要存储元素所在位置的行和列 +- 寻相互存储三元组 `<行标,列表,值>` + + + +![](./images/稀疏矩阵的存储变换.png) + +三元组的结点存储了行标(row)、列表(col)、值(value)三种信息,是主要用来存储稀疏矩阵的一种数据结构。 + + +**注意:矩阵压缩存储的目的就是为了节省空间,已经存过的就不存或者少存(经典想法)** \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/images/不带头结点的链式队列.png b/docs/manuscripts/ds/栈和队列/images/不带头结点的链式队列.png new file mode 100644 index 0000000..3004098 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/不带头结点的链式队列.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/入队.png b/docs/manuscripts/ds/栈和队列/images/入队.png new file mode 100644 index 0000000..30e6ee8 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/入队.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/出队.png b/docs/manuscripts/ds/栈和队列/images/出队.png new file mode 100644 index 0000000..970a7d5 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/出队.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/双端队列.png b/docs/manuscripts/ds/栈和队列/images/双端队列.png new file mode 100644 index 0000000..90f52b9 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/双端队列.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/带头结点的链式队列.png b/docs/manuscripts/ds/栈和队列/images/带头结点的链式队列.png new file mode 100644 index 0000000..b96c1da Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/带头结点的链式队列.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/循环队列入队.png b/docs/manuscripts/ds/栈和队列/images/循环队列入队.png new file mode 100644 index 0000000..f6790ba Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/循环队列入队.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/循环队列初始化.png b/docs/manuscripts/ds/栈和队列/images/循环队列初始化.png new file mode 100644 index 0000000..ffb80e5 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/循环队列初始化.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/栈的基本结构.png b/docs/manuscripts/ds/栈和队列/images/栈的基本结构.png new file mode 100644 index 0000000..ac8e3d9 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/栈的基本结构.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/栈的链式存储结构.png b/docs/manuscripts/ds/栈和队列/images/栈的链式存储结构.png new file mode 100644 index 0000000..ac02722 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/栈的链式存储结构.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/稀疏矩阵的存储变换.png b/docs/manuscripts/ds/栈和队列/images/稀疏矩阵的存储变换.png new file mode 100644 index 0000000..8956501 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/稀疏矩阵的存储变换.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/链式队列出队.png b/docs/manuscripts/ds/栈和队列/images/链式队列出队.png new file mode 100644 index 0000000..528a0e5 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/链式队列出队.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/队列的基本结构.png b/docs/manuscripts/ds/栈和队列/images/队列的基本结构.png new file mode 100644 index 0000000..c1477da Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/队列的基本结构.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/队列队满情况分析.png b/docs/manuscripts/ds/栈和队列/images/队列队满情况分析.png new file mode 100644 index 0000000..33db4d8 Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/队列队满情况分析.png differ diff --git a/docs/manuscripts/ds/栈和队列/images/顺序栈共享存储空间.png b/docs/manuscripts/ds/栈和队列/images/顺序栈共享存储空间.png new file mode 100644 index 0000000..9b84f6e Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/images/顺序栈共享存储空间.png differ diff --git a/docs/manuscripts/ds/栈和队列/readme.md b/docs/manuscripts/ds/栈和队列/readme.md new file mode 100644 index 0000000..d5496a1 --- /dev/null +++ b/docs/manuscripts/ds/栈和队列/readme.md @@ -0,0 +1,24 @@ + + + +# 栈和队列 + +### 主要内容 + +- [栈的基本概念和基本操作](1.栈的基本概念和基本操作.md) +- [栈的顺序存储结构](2.栈的顺序存储结构.md) +- [栈的链式存储结构](3.栈的链式存储结构.md) +- [队列的基本概念和基础操作](4.队列的基本概念和基础操作.md) +- [队列的顺序存储](5.队列的顺序存储结构.md) +- [队列的链式存储](6.队列的链式存储结构.md) +- [栈和队列的应用](7.栈和队列的应用.md) +- [特殊矩阵的压缩存储](8.特殊矩阵的压缩存储.md) + +![](./栈和队列_水印.png) \ No newline at end of file diff --git a/docs/manuscripts/ds/栈和队列/栈和队列_水印.png b/docs/manuscripts/ds/栈和队列/栈和队列_水印.png new file mode 100644 index 0000000..6b473be Binary files /dev/null and b/docs/manuscripts/ds/栈和队列/栈和队列_水印.png differ diff --git a/docs/manuscripts/note-map/cn-map.md b/docs/manuscripts/note-map/cn-map.md new file mode 100644 index 0000000..8c08c93 --- /dev/null +++ b/docs/manuscripts/note-map/cn-map.md @@ -0,0 +1,2 @@ + +# 计算机网络思维导图 \ No newline at end of file diff --git a/docs/note-map/ds-map.md b/docs/manuscripts/note-map/ds-map.md similarity index 100% rename from docs/note-map/ds-map.md rename to docs/manuscripts/note-map/ds-map.md diff --git a/docs/.vuepress/config/sidebar/os.sidebar.js b/docs/manuscripts/os/os.sidebar.ts similarity index 100% rename from docs/.vuepress/config/sidebar/os.sidebar.js rename to docs/manuscripts/os/os.sidebar.ts diff --git a/docs/manuscripts/os/readme.md b/docs/manuscripts/os/readme.md new file mode 100644 index 0000000..32197e1 --- /dev/null +++ b/docs/manuscripts/os/readme.md @@ -0,0 +1,3 @@ + +# 操作系统 +doing diff --git a/docs/manuscripts/wechat-list.md b/docs/manuscripts/wechat-list.md new file mode 100644 index 0000000..d28f447 --- /dev/null +++ b/docs/manuscripts/wechat-list.md @@ -0,0 +1,215 @@ + +# 公众号汇总 + +### 2020年 + + +#### 7月 + + +- [【2020-07-26】微信公众号我来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483659&idx=1&sn=ac7b633a45ac06d388e0698163a2543e&chksm=fcdfb887cba8319151aedfa80c5b59d130838af81fe51c76e5c4926f82f4937b51c8c0c1470e&token=1304241434&lang=zh_CN#rd) + + +- [【2020-07-27】介绍一下,我在B站](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483760&idx=1&sn=30a9fa2a051079c5330039615950c34d&chksm=fcdfb8fccba831ea64644be501ecca3cea5846f16367faed9c84b44a30d9b6dc30456dae6548&token=1304241434&lang=zh_CN#rd) + + + +- [【2020-07-28】五年了,我终于换了人生中的第一台MacBookPro](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483762&idx=1&sn=e9ea759f1c1589881cc3bd9cabddb70a&chksm=fcdfb8fecba831e8c4635a4cefd302977071ed11a4dda6161cf9ad8458865297194f87cb013a&token=1304241434&lang=zh_CN#rd) + + + +- [【2020-07-29】工作中第一次被喷,我到底是如何应对的?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483770&idx=1&sn=6b760873a814f4e18baab415bee3d863&chksm=fcdfb8f6cba831e00802de653ff6723a0bb169a93fe3a6a9762ee62d75d8cd88409268db9047&token=1304241434&lang=zh_CN#rd) + + + +- [【2020-07-31】CSDN关注100了,就这????](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483778&idx=1&sn=3d9f623c58d595f75d7092783a6c5abe&chksm=fcdfb80ecba83118e76de1ed88a5be51229e4145182aee6e0bcc13e4697707cf9f4609d8799d&token=1304241434&lang=zh_CN#rd) + + + + +#### 8月 + +- [【2020-08-01】旧友相见,甚是怀念](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483790&idx=1&sn=76e13ac79ad498309542c9f41878bb1c&chksm=fcdfb802cba8311456ea9ff3309c4354055022cd0056b13c11fac44252231550e17a03f26f29&token=639111151&lang=zh_CN#rd) + + +- [【2020-08-03】JavaScript基础介绍和快速入门](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483805&idx=1&sn=4da4e0d3a2912aee146248c1d8f7f96f&chksm=fcdfb811cba83107fd8f08d3e35af7c72bf7d908d577ad83e45d80b0e9d1bbdbf16b1f169d64&token=639111151&lang=zh_CN#rd) + + + +#### 9月 + + +- [【2020-09-01】Redis的简单安装和部署 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=1&sn=489aa1bd12487b0bf8f2a7694f4ca1aa&chksm=fcdfbd34cba83422f0afee027747d9e95773e093fa3a24225c2729029c4392bf42043964782f&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-01】就很像?? ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=2&sn=a9962c6ca3a5eddd085bcd15617f64d9&chksm=fcdfbd34cba83422b987020a858b7cf31bfde6033642d697d5a00ad9ed618f3cf14deb207d67&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-03】shell编程基础整理 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=1&sn=6e3e862153755d9e61f5f4ebf220381d&chksm=fcdfbc92cba835844e8b6fd37d86a34ccf83342895f448c88ba5b62db974eb536a8e74a121aa&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-03】大学四年建站用过的云服务器都在这里了 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=2&sn=c7589eecbe58ff8939f72c0ff0bf567d&chksm=fcdfbc92cba83584b03dfeea7290606ce8249b0c3105b0b3b95a9087c77e3b1c7f863d8e30f9&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-04】面试复盘和思考 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484711&idx=1&sn=bf362439ccfad04da53ce65c824a988d&chksm=fcdfbcabcba835bddc43c40fd3a454793adf7849a5d5bb356825d481b82ae3e58a749859502c&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-06】朋友是“无用”的,不是你瞧不起我,就是我瞧不起你 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=1&sn=e0f8a7a70ddede75d94b202ddc6106d6&chksm=fcdfbcdbcba835cd2138658d750f7e09a820b34daf4624f253a21a11b5de56635d35e4c0df19&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-06】GitHub简单使用 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=2&sn=ade86739c94f99f944a3d387bc7e13ef&chksm=fcdfbcdbcba835cd192c3b7b7eeea8f5dbb16b2b2fa58b6e2094184f5aa3341927a6d1fad6f8&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-07】MySQL日志类型把我难哭了,你学废了吗?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484771&idx=1&sn=6ae4c6e8d333b0e1aa5cd1aee161d9b8&chksm=fcdfbcefcba835f94e3c0abc189477f241f675f38a63eb03bd320447e89da39cb08b72038ba3&token=1613702159&lang=zh_CN#rd) + + +- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd) + + + +- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd) + + +- [【2020-09-12】向各位汇报,再也不敢鸽了,人生处处有惊喜](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484784&idx=1&sn=ae73f1f4e53b622039a75ec41cabe378&chksm=fcdfbcfccba835eafefe304913e4078cf8dfac22f62fd9d686b307bbdf46d147016f5e876e05&token=639111151&lang=zh_CN#rd) + + + +- [【2020-09-13】来来来,无厘头技术(水)文,各种尬。简简单单评价一下](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=1&sn=10d26a600112ec4f95b3b3f470955744&chksm=fcdfbc03cba83515b07f0ae6cee791d1fb5fd619364cff3a17a4deab91333f0a6277b09a66a9&token=639111151&lang=zh_CN#rd) + + +- [【2020-09-13】基础Brew和Tree的安装实录](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=2&sn=94a6455ed6b17fa5b27e96358e935803&chksm=fcdfbc03cba83515d13dcfc2dea2445085a34ff4360e0a367fd914bb04bc6ba18a780a0cd2d2&token=639111151&lang=zh_CN#rd) + + +- [【2020-09-13】PM2进程管理,给我学!](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=3&sn=38a289efffda9510b5ff04c5bed0663e&chksm=fcdfbc03cba835154c888b9d7f86eac85c250eefb9d053687173274373f2f8d7b19fc307e76a&token=639111151&lang=zh_CN#rd) + + +- [【2020-09-14】数据结构,一定要学废了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484823&idx=1&sn=d41bb8da02585cf9ea8d0b3ef27e3dbb&chksm=fcdfbc1bcba8350d84ba2f01eaf187cbaa2d4cf5a9078beb1f2fafe94edb0126c82595ed8191&token=368257571&lang=zh_CN#rd) + + +- [【2020-09-16】ELK基础概念与常用架构整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484837&idx=1&sn=7f0de3eeea3fc6ee299587704f5c44cd&chksm=fcdfbc29cba8353fd894582da7ae2c93b5920c4dbb1e197b011a817dc0962e317842a32d5560&token=368257571&lang=zh_CN#rd) + + + +- [【2020-09-17】分享书上一段话,问一个问题](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=1&sn=7af55ef3a7d843d9c43de6d6c7911da3&chksm=fcdfbc3ecba835287b2c644cda606454a713d370fbd7d14714b22a04277f7a7784b96b8b277e&token=368257571&lang=zh_CN#rd) + + + +- [【2020-09-17】看源码遇到的三个知识点,一个也没懂](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=2&sn=c59839c677d7c9652a09d1f8c70ef8d6&chksm=fcdfbc3ecba83528cf8271a2615129340a6f11954b6d9396160d0fb2c41593253d5e3510a031&token=368257571&lang=zh_CN#rd) + + + +- [【2020-09-20】express()函数整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=2&sn=63e6b669341217135013816464dd5bd9&chksm=fcdfbc4dcba8355b4de0f712047709425a35fa3b122378b31f0e4db3afb82dfd38872862aab4&token=368257571&lang=zh_CN#rd) + + + +- [【2020-09-22】入秋了,安好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=1&sn=e39e3547da49f40e1b64deadf9a9cfef&chksm=fcdfbc4dcba8355bfa9c8b9531a463fc652b764064528dd6c243f47a157b20e017bad3f410f4&token=368257571&lang=zh_CN#rd) + + + +- [【2020-09-22】Nginx安装详解,我服务器上也是这样的](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=1&sn=b1073522cfd3ce6ebbe85e85ad4e35e0&chksm=fcdfbc6dcba8357bdb212c9db1378a045d0dcfd95b79ed05688180f05d2b391f9b724d0d752f&token=368257571&lang=zh_CN#rd) + + +- [【2020-09-22】被攻击的一天](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=2&sn=34c61ed01c6522d2861be3342ec12ad5&chksm=fcdfbc6dcba8357b76eb0fe6c502d932def6cd232297b010f9b2f9a1fca35c38df77dacce7f2&token=368257571&lang=zh_CN#rd) + + + +- [【2020-09-26】跟父亲视频的一个半小时,聊到了我,也聊到了Ta](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484929&idx=1&sn=394783dd2bfd65da24ae6dcb89d69ec6&chksm=fcdfbf8dcba8369b926b7083bbe3515aa5857f7589acc3f9d6d4987c67539a76dbd6e3cb70a1&token=368257571&lang=zh_CN#rd) + + + +#### 10月 + +- [【2020-10-07】时间太快,溜了溜了,杭州见](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484943&idx=1&sn=ad37db87dc40f381fd18cc828e492384&chksm=fcdfbf83cba8369598fc2773b63df235a9719b43749e7daab753c621fef5af4fba054dbb46ea&token=368257571&lang=zh_CN#rd) + + +- [【2020-10-14】写不了代码就不写嘛](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484951&idx=1&sn=edddf3d6c8f3fc6dd1d14063b536c732&chksm=fcdfbf9bcba8368d81ddffcbd258f7e4b7fb573d2a8963859e1b156e8a5f5d81f5629c49be6e&token=368257571&lang=zh_CN#rd) + + +- [【2020-10-18】我不行了,这号关注量男女7:3 还怎么相亲嘛?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484968&idx=1&sn=d37960ed81044fbf314440af85049d65&chksm=fcdfbfa4cba836b25082535910f7137d1513d834d54fbfadf48a433b29511ccf4d532f19b88a&token=368257571&lang=zh_CN#rd) + + +- [【2020-10-26】悄悄接你下班,陪你回家](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484988&idx=1&sn=947c487946fa3574d33e9c6861a1ee28&chksm=fcdfbfb0cba836a626d2efa904a5177c2e0916c381b26c89b6dcfc610a380b906d4480f7cc9b&token=368257571&lang=zh_CN#rd) + + + +#### 11月 + + +- [【2020-11-01】11月,你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485002&idx=1&sn=3760eba58f7ded433b71bec48b89a681&chksm=fcdfbfc6cba836d0b7db1f2aa5a4a884f68f8ce20a59aa44b4ac46c59eb4dd1c233079241a4a&token=368257571&lang=zh_CN#rd) + + +- [【2020-11-15】她来了她来了,她带着剪了三遍的视频来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485042&idx=1&sn=181ae5062c31ee7931390607b6f10358&chksm=fcdfbffecba836e8275c849007470db6964f7cd675af59fe73c94369334d17d4840e8c0413d5&token=898438314&lang=zh_CN#rd) + + + +- [【2020-11-18】陪我一路的小姐姐,谢谢啦~ 我大意了呀,没有闪](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485053&idx=1&sn=ed2fe0de87b70781cdb7755ef4726340&chksm=fcdfbff1cba836e7165dc53722aaf96ef38d8f43cfadadcb4695d8ff430ea64619caada81cfa&token=1939941957&lang=zh_CN#rd) + + +- [【2020-11-30】11月的尾巴,12月你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485066&idx=1&sn=1d357917f548a6d977af96c6582db527&chksm=fcdfbf06cba836103152f7a3fdfbf97c1be2472a84f824cbddd532c15aefe14c71b3b076233f&token=831506871&lang=zh_CN#rd) + + +#### 12月 + + +- [【2020-12-06】周末小记——忆旧友、吃火锅,也会感慨](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485080&idx=2&sn=bdc551f2e9bf54dc01881979339af8ad&chksm=fcdfbf14cba836022a05854547cbca03b5a08b912a0e0f195d4856d6b53ecd78aee2f167b515&token=1581389686&lang=zh_CN#rd) + + + +- [【2020-12-10】上火、牙疼,也要砍程序媛一刀](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485100&idx=1&sn=e7c0c41229d51ebfab2939deb1751672&chksm=fcdfbf20cba836364da35ab5acfed076876aae486126bc1c41cdd2502cc89a41cbde7c645610&token=1054397108&lang=zh_CN#rd) + + + +- [【2020-12-17】今晚不蹦迪,来聊一聊个人项目的接口返回](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485136&idx=1&sn=4619fb835e6d57e106ab01116012662a&chksm=fcdfbf5ccba8364aecddf14d11ed8ba36f38050b83b30b8d46e10f86b164aab05322b8455b36&token=755050934&lang=zh_CN#rd) + + +- [【2020-12-20】事情,从英吉利海岸的那杯卡布奇诺美式咖啡说起](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485180&idx=1&sn=15ab9be3e15130103f26c919cbe0b605&chksm=fcdfbf70cba83666d287acc35485d02ddf67bacad6ea46d9ef04521f9f429fcb015d371c918e&token=1356818265&lang=zh_CN#rd) + + + +### 2021年 + + + +#### 1月 + + + +- [【2021-01-06】谁在看小王子呀~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485228&idx=1&sn=1c30866a209af2a5eb927fd7bd63cc8b&chksm=fcdfbea0cba837b6d4cf9865b72a6a1553c4d9b6a6cce369bb09f66730ab37ec649071e7ab7c&token=1356818265&lang=zh_CN#rd) + + + +- [【2021-01-15】2020小结,没事就点点看看呗,反正小目标都没完成](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485249&idx=1&sn=dadf2a6dbed1879bbd98c62491436a9c&chksm=fcdfbecdcba837db5c11b8023ffa7ad6cf5a47c03027a0029604a50d0a77c75908efc05af39a&token=1356818265&lang=zh_CN#rd) + + +- [【2021-01-17】搞波大的,浅谈深拷贝——文末有彩蛋](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485258&idx=1&sn=fb71007a5feed8e18674be27b1c749ab&chksm=fcdfbec6cba837d099e90a5f45781ee8cac474388e25ad9383a4fbc05fdb16a8e1377265c018&token=1356818265&lang=zh_CN#rd) + + + +- [【2021-01-18】到底该如何发布Npm插件,常用指令在这里](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485277&idx=1&sn=9eb7c3cef21ace2cc5853e382f2bb03f&chksm=fcdfbed1cba837c7839f3b57836f43b3425c8b5a7888f543bf4a1dd8b39cd82ed7d51a24a685&token=1356818265&lang=zh_CN#rd) + + + +- [【2021-01-20】好用的AntDocs,也来学着用一下,基本过程整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485291&idx=1&sn=19f13df8131a9f662973f2d9240c1eab&chksm=fcdfbee7cba837f180d8ad30735cd61e6c73fe195e63d46046bb24f80e1536aa0a585c3e1015&token=1356818265&lang=zh_CN#rd) + + + +- [【2021-01-27】【持续更新】从查找算法开始数据结构入门,大家都在掘金等你](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485318&idx=1&sn=6ae5fc9f1cf994818ff89d53a926761e&chksm=fcdfbe0acba8371c9d0025008084857cf14c52b01dfb1b9460d3388ba543c36da2abcbf90216&token=1356818265&lang=zh_CN#rd) + + + +- [【2021-01-30】ORM框架入门之Sequelize,我快翻译不动了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485341&idx=1&sn=fc493c28ab138056567e916b769ddbf2&chksm=fcdfbe11cba8370793e8e0d71e7766f4e1e7f3e8672921d6b98757f7d7b271b290f3edc65d6f&token=1356818265&lang=zh_CN#rd) + + +#### 2月 + + +- [【2021-02-07】被妹妹支配的一周,晚上差点连家都回不去..](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485376&idx=1&sn=049a5df5cb97786e80aded38a1bf3732&chksm=fcdfbe4ccba8375a52cb8d7077836216e5f5f41ee9453aebf524eb0a5d8a5db48cbabc11f3e4&token=1356818265&lang=zh_CN#rd) + + + +- [【2021-02-11】【新年快乐】程序员的2020,就这样悄咪咪地溜走了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485404&idx=1&sn=276100858df23daf987dbc68997477df&chksm=fcdfbe50cba837460079fc9ab414754a49668f82dc0f6a5a41ec320d3e5dd77c1a8c271e061b&token=1356818265&lang=zh_CN#rd) + + + +- [【2021-02-13】抢红包、拼手气来啦,之前答应的抽奖变成新年红包啦~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485420&idx=1&sn=26c0e3690363af5dddd805ae417eeee9&chksm=fcdfbe60cba8377645e44333ccbe35147b9844578008e5699aba62b82c12fc03634e2d68781c&token=1356818265&lang=zh_CN#rd) + diff --git a/docs/note-map/cn-map.md b/docs/note-map/cn-map.md deleted file mode 100644 index cb7dd2f..0000000 --- a/docs/note-map/cn-map.md +++ /dev/null @@ -1,2 +0,0 @@ - -## 计算机网络思维导图 \ No newline at end of file diff --git a/docs/os/Readme.md b/docs/os/Readme.md deleted file mode 100644 index beaf998..0000000 --- a/docs/os/Readme.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: 操作系统 ---- - -## 操作系统 -doing diff --git a/docs/README.md b/docs/readme.md similarity index 58% rename from docs/README.md rename to docs/readme.md index efc9f19..429edef 100644 --- a/docs/README.md +++ b/docs/readme.md @@ -144,13 +144,14 @@ yarn run dev ### 在线浏览 -https://408.142vip.cn +[https://408.142vip.cn](https://408.142vip.cn) + 网站无法访问时,建议通过科学上网访问备用网络 -- Github: https://142vip.github.io/408CSFamily -- Netlify: https://408-family.netlify.app -- Vercel: https://408-family.vercel.app +- Github: [https://142vip.github.io/408CSFamily](https://142vip.github.io/408CSFamily) +- Netlify: [https://408-family.netlify.app](https://408-family.netlify.app) +- Vercel: [https://408-family.vercel.app](https://408-family.vercel.app) @@ -158,68 +159,99 @@ https://408.142vip.cn ### 提交记录 ---- +## 赞赏列表 -### 赞赏列表 - - -以下排名不分先后! [详细统计]() +以下排名不分先后! [传送门→]() **赞赏过的一定要微信跟我说呀!!!!!!** -### 赞助商 +## 赞助商 -以下排名不分先后! 哈哈哈,还木有收到赞助,先留坑 +**以下排名不分先后! 还木有收到赞助,哈哈哈,先留坑** ---- -### 联系作者 -
- - - - - - - - +## 联系作者 + +若系列文章对你有所帮助,欢迎订阅公众号或微信”骚扰“,获取更多内容。**商务合作请备注来意** + +
+
+ + 关注公众号 + 联系作者 +
+
+
-若系列文章对你有所帮助,欢迎订阅公众号,获取更多内容。也可微信”骚扰“,商务合作请备注来意 - - - - - - - -

- -

- 交流/加群/互看朋友圈 当然:**聊天 /提问 /建议 /提需求** 可以在本公众号直接**私信**,后台可以看到,有时间即会回复,偶尔的延迟和疏漏还请小伙伴们谅解,蟹蟹。 -### 外链 - diff --git a/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md b/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md index b6bafbb..3840dad 100644 --- a/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md +++ b/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md @@ -17,7 +17,7 @@ - 明确栈是一种线性表 - 限定栈只能在某一端进行插入或者删除操作 -![栈的顺序结构](images/栈的基本结构.png) +![栈的顺序结构](./images/栈的基本结构.png) `栈顶`:线性表允许进行插入和删除的一端。 diff --git a/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md b/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md index 36be4e6..6aab142 100644 --- a/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md +++ b/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md @@ -21,7 +21,7 @@ `出队`: 删除队列元素,也叫做`离队` -![](/数据结构/栈和队列/images/队列的基本结构.png) +![](./images/队列的基本结构.png) 结合生活中排队的经验,在群体素质高、无人插队的情况下(`薛定谔排队`,噗呲,哈哈哈),**一般最早排队的也是最早离队的**,和栈的`后进先出`不一样的是,队列是`先进先出`的,即:First In Frist Out diff --git a/manuscripts/back/栈和队列/5.队列的顺序存储结构.md b/manuscripts/back/栈和队列/5.队列的顺序存储结构.md index 3db7b26..bed171d 100644 --- a/manuscripts/back/栈和队列/5.队列的顺序存储结构.md +++ b/manuscripts/back/栈和队列/5.队列的顺序存储结构.md @@ -44,7 +44,7 @@ typedef struct { -![](/数据结构/栈和队列/images/入队.png) +![](./images/入队.png) 在空队列中,初始状态为`Q.front===Q.rear==0`,当元素a入队时,队尾指针rear后移+1,入队成功后,`Q.front==0`、`Q.rear==1`,在队不满的情况下进队,都是`先赋值给队尾元素,再移动队尾指针rear+1`,通过上面的图宝贝可以看到,队列被元素打满的时: @@ -54,7 +54,7 @@ typedef struct { > Tips: MaxSize为队列结构体定义中,最大存储元素个数哦~ -![](/数据结构/栈和队列/images/出队.png) +![](./images/出队.png) 进队说完了,那给宝贝来说说出队吧。以上图为例,队列中`Q.rear==Maxsize`、`Q.front==0`;当出现元素在队首出队,就会直接影响队首指针,从上面的流程上看: @@ -90,7 +90,7 @@ typedef struct { 在上面的顺序队列中,当队满后进行出队列,由于顺序队列出队只在队首进行操作,并且只会修改队首指针,这时候就会出现队尾指针一直`Q.rear===MaxSize`情况,就如下: -![队列队满情况分析](/数据结构/栈和队列/images/队列队满情况分析.png) +![队列队满情况分析](./images/队列队满情况分析.png) 可以很明显的看到,明明队列不满,但是由于进队列只能在队尾操作,因此不能进行进队操作;通常在这种情况下入队就会出现“上溢出”。 @@ -109,7 +109,7 @@ typedef struct { -![](/数据结构/栈和队列/images/循环队列初始化.png) +![](./images/循环队列初始化.png) 当队首指针`Q.front=MaxSize-1`后,再有元素`出队`就前进一个位置自动到位置0了【注意:可以结合时钟来理解,一圈转完了】 @@ -127,7 +127,7 @@ typedef struct { **和时钟一样,顺时钟进行时间变换,在出队、入队时,队首、队尾指针都是按顺时针方向进1** -![](/数据结构/栈和队列/images/循环队列入队.png) +![](./images/循环队列入队.png) 如上图,循环队列从最开始初始化为空队列时:`Q.front==Q.rear==0`,经过元素a入队,队尾指针顺时针前移`Q.rear+1`,到元素a、b、c、d陆续入队,就好像时钟转完了一圈,循环队列已满,此时发现:`Q.front==Q.rear==0`在队满时候依然成立,所以结合前面提到的初始化对空条件:`Q.front==Q.rear==0`,用`Q.front==Q.rear`来区分`队空`和`队满`是非常不合适的。 diff --git a/manuscripts/back/栈和队列/6.队列的链式存储结构.md b/manuscripts/back/栈和队列/6.队列的链式存储结构.md index 237150c..70ccdee 100644 --- a/manuscripts/back/栈和队列/6.队列的链式存储结构.md +++ b/manuscripts/back/栈和队列/6.队列的链式存储结构.md @@ -22,7 +22,7 @@ > - 队头指针指向队头元素 > - 队尾指针指向队尾元素的下一个位置 -[//]: # (![](images/不带头结点的链式队列.png)) +![](./images/不带头结点的链式队列.png) 队列的链式存储结构: @@ -53,7 +53,7 @@ typedef struct{ 仔细思考上面的入队、出队操作,都需要考虑队空的情况下的特殊处理,不带头结点的队列导致队空队首和队尾指针都为NULL,比较麻烦;结合之前整理、学习过的单链表,套用一下先贤的思路,也整上一个头结点,就会发现容易处理很多; -![](/数据结构/栈和队列/images/带头结点的链式队列.png) +![](./images/带头结点的链式队列.png) 链式队列加上头结点后,之前较为复杂的入队、出队操作就统一起来了。 @@ -198,7 +198,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){ 出队的时候明显有些绕,需要明确队列中头结点的存在,出队出的是单链表中头结点的后一个结点,同时要确保整个过程`不断链` -![](/数据结构/栈和队列/images/链式队列出队.png) +![](./images/链式队列出队.png) @@ -206,7 +206,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){ `双端队列`: 允许在两端都可以进行入队和出队操作的队列,元素的逻辑结构仍然是线性结构 -![](/数据结构/栈和队列/images/双端队列.png) +![](./images/双端队列.png) **双端队列的两端分别称为`前端`和`后端`,两端都可以`入队`和`出队`** diff --git a/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md b/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md index 9ba49ae..3f117a0 100644 --- a/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md +++ b/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md @@ -59,7 +59,7 @@ -![](/数据结构/栈和队列/images/稀疏矩阵的存储变换.png) +![](./稀疏矩阵的存储变换.png) 三元组的结点存储了行标(row)、列表(col)、值(value)三种信息,是主要用来存储稀疏矩阵的一种数据结构。 diff --git a/manuscripts/category/README.md b/manuscripts/category/README.md deleted file mode 100644 index 2471e27..0000000 --- a/manuscripts/category/README.md +++ /dev/null @@ -1,973 +0,0 @@ ---- -title: null -date: 2021-01-19 08:04:19 -permalink: /pages/add102/ -categories: - - category -tags: - - ---- - - -# - - -

- -

-

- - - - - - - - - -

- - -
- 码云版 - -
- - -## 写最前面 - -> 这里是日常工作、学习、生活中总结的各类文章笔记,主要涉及开发技术总结记录,偶尔也会感慨万千,水一些无关技术的文章;若发现博客外链不能访问则可能博客设置修改过,请直接访问博客;所有内容会选择性的发表于**微信公众号、个人博客、掘金、CSDN ,实际内容以本仓库排版、校对为主。** 也会不定时同步到 **码云** 。 -> **以下内容没有链接的代表尚未完成,大家善用快捷键Ctrl+F** -> -> 创建时间:2020年2月14日 - - - -## 关于作者 - - -- [个人项目整理](http://blog.142vip.cn/s/projects) -- [自我介绍]() - - -## 思维导图 - - -> 内容同步与文档,可以结合思维导图对文档进行有效学习.相关目录的xmind文件为思维导图原文件 - - -## 日常推荐 - - -- [云服务器推荐](docs/recommend/云服务器推荐.md) -- [学习网站、使用工具](docs/recommend/学习网站、效率工具.md) -- [值得细读的技术文章推荐](docs/recommend/值得细读的技术文章推荐.md) - - -# 文章笔记 - - -**注:无高亮有效访问链接的待完成/同步** - - -## 前端 - - -> 前端技术百花齐放、层出不穷,个人认为要注重广度,学会看官方文档熟练操作即可; - - -#### CSS - - -> 依赖W3CSchool文档和日常整理,主要是对CSS常用操作和基础属性进行整理总结。不会过多深入 - - -- [CSS开发规范](docs/css/CSS开发规范.md) - -- 样式属性 - -- 页面布局 - -- 移动端适配 - - - - -##### [基础教程](docs/css/基础教程) - - -## - - -#### JavaScript - - -> **本级目录下的JavaScript内容没有发表到[博客](http://blog.142vip.cn)上,建议对照[脑图](docs/javascript/README.md)在[JavaScript主目录](javascript)下学习**,依赖官方文档及自身对JavaScript语言的初步了解,进行的关于JavaScript知识整理,主要目的是复习基础概念、了解新特性、熟练ES6/7操作;整体相对来说由易到难,方便后续查阅学习~ - - -##### 快速入门 - - -- [简单介绍](docs/javascript/快速入门/javascript简单介绍.md) -- [快速了解](docs/javascript/快速入门/javascript快速入门.md) -- [JavasScript开发规范](docs/javascript/JavaScript开发规范.md) - - -##### 基础教程 - - -- [语法与数据结构](docs/javascript/基础教程/javascript语法与数据结构.md) -- [循环与迭代](docs/javascript/基础教程/javascript循环与迭代.md) -- [流程控制与错误处理](docs/javascript/基础教程/javascript流程控制与错误处理.md) -- [表达式和运算符](docs/javascript/基础教程/javascript表达式和运算符.md) -- [函数和方法](docs/javascript/基础教程/javascript函数.md) -- [数字和日期](docs/javascript/基础教程/javascript数字和日期.md) -- [对象的使用](docs/javascript/基础教程/javascript对象的使用.md) -- [正则表达式](docs/javascript/基础教程/javascript正则表达式.md) -- [promise对象的使用](docs/javascript/基础教程/promise对象的使用.md) -- [modules模块](docs/javascript/基础教程/modules模块.md) - - -##### 中级教程 - - -- [Promise对象](docs/javascript/中级教程/promise对象.md) -- [async函数](docs/javascript/中级教程/async函数.md) -- [class类](docs/javascript/中级教程/class类.md) - - -##### 高级教程 - - -- [不一样的ajax](docs/javascript/高级教程/不一样的ajax.md) -- [什么是事件循环](docs/javascript/高级教程/什么是事件循环.md) - -- [JSON.stringify()的三个参数]() - - -##### 最后稻草 - - -- [ES6、ES7、ES8、ES9、ES10的新特性](docs/javascript/最后稻草/ES6、ES7、ES8、ES9、ES10的新特性.md) -- [ES2020新特性](docs/javascript/最后稻草/ES2020新特性.md) -- [JavaScript 工具函数大全](docs/javascript/最后稻草/JavaScript工具函数大全.md) -- [常用函数方法整理](docs/javascript/最后稻草/常用函数方法整理.md) - - -#### JQuery - - -- [安装使用](docs/jquery/安装使用.md) -- [基本属性](docs/jquery/基本属性.md) - - -- Css样式 - - -- 选择器 - - -- 文档处理 - - -- 筛选 - - -- 事件 - - -- 效果 - - -- 事件对象 - - -- 延迟对象 - - -- 回调函数 - - -- 其他整理 - - -#### Vuejs - - -> 介绍基础、常用的vue功能,不会很深入的涉及到vue源码及原理 - - -#### React - - -#### Nuxtjs - - -> Nuxtjs是在vue框架上进行封装的,主要是用来解决单体页面的服务端渲染问题,提供网站进行SEO优化的可能 - - -[前端读写cookie]() - - -#### UI框架 - - -> 市面上前端框架层出不穷,不同的技术栈依赖的UI框架也不尽相同,这里将会依据笔者使用的UI框架,以线上项目展示的方式,介绍用过的框架; - - -- Bootstrap -- LayerUI -- Ant-design-vue -- iView-UI -- VantUI -- Element-UI - - -## 后端【Node】 - - -> 相比前端,作为偏后端的开发者, 后端技术的学习则需要稳扎稳打、不断积累整理,在会用、能用、熟练的基础上,更应该学习其中的原理;所以若你为后端开发者,不论Java、Nodejs、Go等技术栈,对待下面将提及的微服务架构、容器技术、服务治理、高可用等都需要努力学习,抓住重点; -> -> 在面试面前,能力是不会说谎的,打铁还需自身硬,加油~ - - -#### Express框架 - - -- [框架概念简介](docs/express/框架介绍.md) -- [brew和tree的安装](docs/express/brew和tree的安装.md) -- 搭建express基础项目 -- 安装 -- 路由 -- 静态文件 -- 中间件 -- 统一错误处理 -- [express()函数](docs/express/express()函数.md) -- [application对象详解](docs/express/application对象详解.md) -- [request对象](docs/express/request对象.md) -- [respon对象]() -- [router对象]() -- 数据库集成 -- MVC分层 -- [pm2进程管理](docs/express/pm2进程管理.md) -- 分环境部署上线 - - -#### Koa框架 - - -- koa介绍 -- 手把手搭建第一个koa项目 -- 应用(Application) -- 中间件(Middleware) -- 上下文(Context) -- 请求(Request) -- 响应(Response) - - -#### Eggjs框架 - - -##### 基础篇 - - -- [第一部分:Git概述](docs/eggjs/git-README.md) - - -* [1.1 下载和安装](docs/eggjs/git-download.md) - * [1.2 基本配置](docs/eggjs/git-config.md) - * [1.3 常用命令](docs/eggjs/git-dns.md) - * [1.4 GitHub简单使用](docs/eggjs/git-github.md) - * [1.5 GitBook简单使用](https://mp.weixin.qq.com/s/Wn_IZ6K4eqh1PtomRtqdqg) - * [1.5.1 Typora简介](docs/eggjs/git-typora.md) - * [1.5.2 MarkDown语法](docs/eggjs/git-markdown.md) - * [1.6 码云和GitHub的选择](docs/eggjs/git-choice.md) - - -- [第二部分:数据库概述](docs/eggjs/mysql-README.md) - - - - [2.1 下载和安装](docs/eggjs/mysql-download.md) - - [2.2 连接数据库](docs/eggjs/git-connect.md) - - [2.3 CURD操作](docs/eggjs/mysql-curd.md) - - [2.4 Redis缓存](docs/eggjs/mysql-redis.md) - - [2.4.1 redis安装](docs/eggjs/mysql-redis-install.md) - - [2.4.2 redis常用指令](docs/eggjs/mysql-redis-dns.md) - - [2.5 可视化管理](docs/eggjs/mysql-redis-view.md) - - -##### 入门篇 - - -- [第一部分:Egg框架快速入门](docs/eggjs/egg-README.md) - - -- [1.1 基础功能](docs/eggjs/egg-base.md) - - [1.1.1 接口参数获取](docs/eggjs/egg-request-params.md) - - [1.1.2 Egg内置对象 ](docs/eggjs/egg-object.md) - - [1.1.3 Config配置](docs/eggjs/egg-config.md) - - [1.1.4 Egg生命周期](docs/eggjs/egg-life.md) - - [1.1.5 中间件理解](docs/eggjs/egg-middleware.md) - - [1.1.6 Router路由分发](docs/eggjs/egg-router.md) - - [1.1.7 Controller控制器](docs/eggjs/egg-controller.md) - - [1.1.8 Service服务](docs/eggjs/egg-service.md) - - [1.1.9 常用插件](docs/eggjs/egg-plugin.md) -- [1.2 核心功能](docs/eggjs/egg-core.md) - - [1.2.1 日志输出](docs/eggjs/egg-logger.md) - - [1.2.2 定时任务](docs/eggjs/egg-schedule.md) - - [1.2.2 HttpClient网络请求](docs/eggjs/egg-httpclient.md) - - [1.2.3 Cookie的基本使用](docs/eggjs/egg-cookies.md) - - [1.2.4 Session的基本使用](docs/eggjs/egg-session.md) - - [1.2.5 统一异常-错误处理](docs/eggjs/egg-try-catch.md) - - [1.2.6 CSRF防范和XSS攻击](docs/eggjs/egg-csrf-xss.md) - - [1.2.7 RESTful API接口风格](docs/eggjs/egg-restful.md) - - -- [第二部分:插件开发](docs/eggjs/plugin-README.md) - - - - [2.1 egg-validate参数校验](docs/eggjs/plugin-egg-validate.md) - - [2.2 egg-view-ejs页面渲染](docs/eggjs/plugin-egg-view.ejs.md) - - [2.3 egg-redis缓存](docs/eggjs/plugin-egg-redis.md) - - [2.4 egg-mysql](docs/eggjs/plugin-egg-mysql.md) - - [2.5 egg-sequelize](docs/eggjs/plugin-egg-sequelize.md) - - [2.6 egg-socket.io即时通讯](docs/eggjs/plugin-egg-socket.io.md) - - -##### 代码实战篇 - - -- [第一部分:常用代码](docs/eggjs/project-README-CODE.md) - - - - [1.1 图片前端在线剪辑](docs/eggjs/project-images-cropper.md) - - [1.2 文件上传后台处理](docs/eggjs/project-upload.md) - - [1.3 MD5加密-解密算法](docs/eggjs/project-md5.md) - - [1.4 Egg Jwt加密和校验](docs/eggjs/project-token.md) -- [第二部分:项目简介](docs/eggjs/project-README-INTRODUCE.md) - - - - [2.1 基于OAuth2的统一认证中心系统](docs/eggjs/project-ssoCenterSystem.md) - - [2.2 常用前后端分页比较与实现](docs/eggjs/project-pagenation.md) - - [2.3基于Spring Boot实现的个人博客](docs/eggjs/project-spring-boot-blog.md) - - [2.4 基于Yapi搭建的接口管理系统](docs/eggjs/project-webapi.md) - - [2.5 GitBook开源笔记总结站点搭建](docs/eggjs/project-gitbook.md) - - [2.6 个人网站及接口服务搭建搭建](docs/eggjs/project-142vip.cn.md) -- [第三部分:手把手搭建基础Egg开发框架](docs/eggjs/egg-egg-example.md) - - -#### Nestjs框架 - - -> Nestjs框架推崇typescript语法,并且友好的兼容express框架,因此在学习Nestjs框架之前,请务必先熟悉express框架相关操作并进行typescript入门;在一定程度上typescript和面向对象语言Java、Net等很相似,如果你之前有JavaScript和Java的基础,那么应该恭喜你,你的学习速度将会倍速提高 - - -- [核心基础概念](nestjs/nestjs核心基础概念.md) -- [项目创建初始化入门](nestjs/nestjs项目创建初始化入门.md) -- [整合swagger快速生成api文档](nestjs/nestjs整合swagger快速生成api文档.md) -- [接口路由请求传参](nestjs/nestjs接口路由请求传参.md) - - -## 算法 - - -- 算法分析 - - -#### 查找 - - -- 顺序查找 -- 折半查找 -- 分块查找 -- B树和B+树 -- 散列(Hash)表 -- 字符串模式匹配(KPM) - - -#### 排序 - - -- 插入排序 -- 交换排序 -- 选择排序 -- 归并排序 -- 基数排序 -- 内部排序比较 -- 外部排序比较 - - -#### LeetCode刷题 - - -## 数据库 - - -> 主讲数据库基础知识,结合node的简单使用,相关的部署方案参照下方的文档 - - -#### MySQL - - -- [【服务器版】MySQL的安装部署](https://mp.weixin.qq.com/s/U1OUZYHEChFDx03FvgbMHA) -- [MySQL优化之Explain参数说明](docs/mysql/MySQL优化之Explain参数说明.md) -- 索引 -- sql优化 -- [基于GTID主从复制的原理和基础配置](docs/mysql/基于GTID主从复制的原理和基础配置.md) -- [MySQL日志类型把我难哭了,你学废了吗?](docs/mysql/mysql日志比较.md) - - -#### Redis - - -> 将围绕redis基础概念、使用场景、使用方式、简单部署等方面 展开介绍,[主目录](redis)下有自己觉得还不错PDF文档~ - - -- [key命名规范与建议](docs/redis/key命名规范与建议.md) -- [redis开发使用规范](docs/redis/redis开发使用规范.md) -- [redis基础介绍](docs/redis/redis基础介绍.md) -- [redis的简单安装和部署](https://mp.weixin.qq.com/s/Xe-ZDf2kgUWfYSkuULAdlw) -- [官方默认配置模板](code/docs/redis/redis-default.conf) -- 数据类型 -- [redis简单主从集群部署-docker方式](docs/docs/redis/redis集群部署.md) -- [memCache与Redis比较](docs/redis/memCache与Redis.md) - - -#### Mongo - - -- 基本介绍 -- 安装部署 -- 简单使用 -- Node下的CURD操作 - - -## 服务部署 - - -#### nginx - - -- [nginx安装,普通安装 Or Docker搞定?](docs/nginx/nginx基础部署.md) -- [手把手nginx基础入门]() -- [反向代理、负载均衡真有那么难吗?]() -- [Nginx SSL证书,从此踏上Https之路](docs/nginx/nginx服务器ssl证书配置.md) - - -#### docker - - -- 我与docker的第一次硬碰硬 -- docker操作入门真有那么难吗? -- 这些基础操作指令,你会吗? -- 那些年,我常用的docker指令操作汇总 - - -#### docker-compose - - -- 听说你装了N次都没搞定? -- 集群启动失败,yaml规范不清楚? -- [我了解的docker-compose都在这里了](https://mp.weixin.qq.com/s/nC4nF51xn61TZlenuUxDog) - - -#### linux下shell编程 - -- [shell基础整理](https://mp.weixin.qq.com/s/gctrWdB1JEK59_a9tJQSkg) -- [操作mysql数据库](shell/shell连接mysql.md) -- shell操作docker -- 环境变量env - - -## 服务网关 - - -#### kong - - -- [kong的的基本介绍](/api-gateway/kong/kong的基本介绍.md) -- [docker下kong的部署](/api-gateway/kong/基于docker部署kong网关服务.md) -- docker-compose搭建kong集群 -- 可视化管理界面介绍 - - -#### konga - - -- 基本介绍与docker部署 -- 简单使用 -- 路由管理 - - -#### kong-dashboard - - -- docker简单部署 -- 路由管理 -- 插件介绍 - - -## 服务注册 - - -#### Apollo - - -> 携程开发的配置中心经典项目,可集成多语言客户端,实现灰度部署,在分布式微服务的场景下抽离出服务配置,方便统一管理、发布 - - -#### Consul - - -> 服务注册、发现,key-value键值对管理 - - -#### Nacos - - -> 背靠国内一线互联网大厂——阿里巴巴,也是可适用于微服务下的配置管理,支持Java、Nodejs等主流语言,目前生态良好,技术支持表现一般,属于Apollo替代产品 - - -## 消息中间件 - - -> 消息队列已经逐渐成为企业IT系统内部通信的核心手段。具有低耦合、可靠投递、广播、流量控制、最终一致性等一系列功能,成为异步RPC的主要手段之一。当今市面上有很多主流的消息中间件,如老牌的ActiveMQ、RabbitMQ,炙手可热的Kafka,阿里巴巴自主开发RocketMQ等。 -> -> 目前个人了解的有:RabbitMQ、Kafka、RocketMQ - - -#### RabbitMQ - - -#### kafka - - -#### RocketMQ - - -## RPC框架 - - -#### gRPC - - -> gRPC 一开始由 google 开发,是一款语言中立、平台中立、开源的远程过程调用(RPC)系统,tensorflow分布式与tensorflow serving底层通信都是是用的grpc。我自己基于JavaScript技术栈上较多的接触到gRPC,传送门:[基于js下各框架grpc的使用]() - - -- nodejs下grpc的简单实用 - - -- grpc集成express框架 - - -- grpc集成koa框架 - - -- eggjs框架下grpc的线上部署 - - -- grpc插件开发示例 - - - - - -#### Dubbo - - -> Alibaba开发的一个RPC框架,远程接口基于Java Interface, 依托于Spring框架(**Java技术栈重点研究**) - - -#### Thrift - - -> Apache的一个项目(http://thrift.apache.org),前身是Facebook开发的一个RPC框架,采用thrift作为IDL (Interface description language)。 - - -## Elk日志管理平台 - - -> 全链路日志 - -- [ELK基础概念与常用架构整理](docs/elk/基础概念与常用架构整理.md) - - -#### ElasticSearch - - -> 数据存储 - - -#### Logstash - - -> 数据收集 - - -#### Kibana - - -> 数据展示 - - -## 监控工具 - - -> 参考笔者线上平台:http://view.142vip.cn/grafana 账号/密码:test/123456 基于docker部署,由于是个人学生服务器,站点访问延迟较高 -> -> 常用工具:promethus 、grafana、zabbix、lepus等 - - -#### Prometheus - - -#### Grafana - - -#### Zabbix - - -#### lepus(天兔) - - -## 高可用架构 - - -#### MySQL集群 - - -##### 主从同步 - - -> 实现功能:主从服务器数据一致,低延迟、高并发 - - -- Binlog主从复制 -- GTID主从复制 -- 主主复制 - - -##### 代理中间件 - - -> 实现功能:读写分离、分库分表、负载均衡、故障切换 - - -- Mycat -- 360Atlas - - -#### 集群监控 - - -> 实现功能:实时监控、可视化数据显示、故障报警 - - -##### Prometheus - - -- 监控MySQL集群 -- 监控Mongo数据库 -- 监控Node服务 -- 监控linux服务器 -- 监控redis集群 - - -##### Grafana - - -- 基本安装部署 -- 功能介绍和简单操作 -- 可视化数据图形显示界面 -- 常用模板 - - -##### alter-manager - - -- 推送到邮箱 -- 推送到钉钉、微信机器人 -- 推送到自定义消息接口(webhook钩子) - - -#### 压力测试 - - -- jmeter - - -#### Redis集群 - - -> 持续整理中... - - -##### 简单主从模式 - - -#### 哨兵模式 - - -##### cluster模式 - - -## 网站搭建 - - -> 从大二开始搭建个人网站:http://www.142vip.cn 起初非常简陋,工作之后计划进行第三版迭代,一直抽空佛系谢谢, 目前在重构中.. - - -- 最初的梦想 -- 舍弃Java,我的重构之路 -- 网站正规化,Nginx配置SSL证书 -- 小小网站却耗费三台学生服务器? - - - - - - -## 书籍整理 - -### 技术类 -> 待整理 - -#### [狼书 - 了不起的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/Readme.md) - -- [第一章 Node.js初识](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第一章%20Node.js初识.md) -- [第二章 Nodejs安装与入门](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第二章%20Nodejs安装与入门.md) -- [第三章 更了不起的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第三章%20更了不起的Node.js.md) -- [第四章 更好的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第四章%20更好的Node.js.md) -- [第五章 Node.js是如何执行的](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第五章%20Node.js是如何执行的.md) -- [第六章 模块与核心](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第六章%20模块与核心.md) -- [第七章 异步写法与流程控制](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第七章%20异步写法与流程控制.md) - -- [全部笔记](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/全部笔记.md) - - -#### [ES6标准入门——阮一峰]() - -> 本书内容较多,很多基础细节都有说明,难度中等、适合入门,书中很多例子我也摘抄了很多,主要是我认为重要的,笔记按照自己学习逻辑整理的,请君慢用 -- [1.ECMAScript 6 简介](docs/article-records/读书笔记/ES6标准入门/1.ECMAScript%206%20简介.md) -- [2.let和const命令](docs/article-records/读书笔记/ES6标准入门/2.let和const的命令.md) -- [3.变量的解构赋值](docs/article-records/读书笔记/ES6标准入门/3.变量的解构赋值.md) -- [4.字符串详解]() -### 非技术类 - -> 主要是跟计算机无关的一些书,在看完之后,会选择性的进行思维导图、经典词句整理,也可能添加个人思考 - - -#### [你好孤独 - 陈果](docs/article-records/读书笔记/好的孤独-陈果/Readme.md) - -## 公众号汇总 - -### 2020年 - -#### 7月 - -- [【2020-07-26】微信公众号我来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483659&idx=1&sn=ac7b633a45ac06d388e0698163a2543e&chksm=fcdfb887cba8319151aedfa80c5b59d130838af81fe51c76e5c4926f82f4937b51c8c0c1470e&token=1304241434&lang=zh_CN#rd) - -- [【2020-07-27】介绍一下,我在B站](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483760&idx=1&sn=30a9fa2a051079c5330039615950c34d&chksm=fcdfb8fccba831ea64644be501ecca3cea5846f16367faed9c84b44a30d9b6dc30456dae6548&token=1304241434&lang=zh_CN#rd) - - -- [【2020-07-28】五年了,我终于换了人生中的第一台MacBookPro](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483762&idx=1&sn=e9ea759f1c1589881cc3bd9cabddb70a&chksm=fcdfb8fecba831e8c4635a4cefd302977071ed11a4dda6161cf9ad8458865297194f87cb013a&token=1304241434&lang=zh_CN#rd) - - -- [【2020-07-29】工作中第一次被喷,我到底是如何应对的?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483770&idx=1&sn=6b760873a814f4e18baab415bee3d863&chksm=fcdfb8f6cba831e00802de653ff6723a0bb169a93fe3a6a9762ee62d75d8cd88409268db9047&token=1304241434&lang=zh_CN#rd) - - -- [【2020-07-31】CSDN关注100了,就这????](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483778&idx=1&sn=3d9f623c58d595f75d7092783a6c5abe&chksm=fcdfb80ecba83118e76de1ed88a5be51229e4145182aee6e0bcc13e4697707cf9f4609d8799d&token=1304241434&lang=zh_CN#rd) - - - -#### 8月 -- [【2020-08-01】旧友相见,甚是怀念](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483790&idx=1&sn=76e13ac79ad498309542c9f41878bb1c&chksm=fcdfb802cba8311456ea9ff3309c4354055022cd0056b13c11fac44252231550e17a03f26f29&token=639111151&lang=zh_CN#rd) - -- [【2020-08-03】JavaScript基础介绍和快速入门](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483805&idx=1&sn=4da4e0d3a2912aee146248c1d8f7f96f&chksm=fcdfb811cba83107fd8f08d3e35af7c72bf7d908d577ad83e45d80b0e9d1bbdbf16b1f169d64&token=639111151&lang=zh_CN#rd) - - -#### 9月 - -- [【2020-09-01】Redis的简单安装和部署 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=1&sn=489aa1bd12487b0bf8f2a7694f4ca1aa&chksm=fcdfbd34cba83422f0afee027747d9e95773e093fa3a24225c2729029c4392bf42043964782f&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-01】就很像?? ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=2&sn=a9962c6ca3a5eddd085bcd15617f64d9&chksm=fcdfbd34cba83422b987020a858b7cf31bfde6033642d697d5a00ad9ed618f3cf14deb207d67&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-03】shell编程基础整理 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=1&sn=6e3e862153755d9e61f5f4ebf220381d&chksm=fcdfbc92cba835844e8b6fd37d86a34ccf83342895f448c88ba5b62db974eb536a8e74a121aa&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-03】大学四年建站用过的云服务器都在这里了 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=2&sn=c7589eecbe58ff8939f72c0ff0bf567d&chksm=fcdfbc92cba83584b03dfeea7290606ce8249b0c3105b0b3b95a9087c77e3b1c7f863d8e30f9&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-04】面试复盘和思考 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484711&idx=1&sn=bf362439ccfad04da53ce65c824a988d&chksm=fcdfbcabcba835bddc43c40fd3a454793adf7849a5d5bb356825d481b82ae3e58a749859502c&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-06】朋友是“无用”的,不是你瞧不起我,就是我瞧不起你 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=1&sn=e0f8a7a70ddede75d94b202ddc6106d6&chksm=fcdfbcdbcba835cd2138658d750f7e09a820b34daf4624f253a21a11b5de56635d35e4c0df19&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-06】GitHub简单使用 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=2&sn=ade86739c94f99f944a3d387bc7e13ef&chksm=fcdfbcdbcba835cd192c3b7b7eeea8f5dbb16b2b2fa58b6e2094184f5aa3341927a6d1fad6f8&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-07】MySQL日志类型把我难哭了,你学废了吗?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484771&idx=1&sn=6ae4c6e8d333b0e1aa5cd1aee161d9b8&chksm=fcdfbcefcba835f94e3c0abc189477f241f675f38a63eb03bd320447e89da39cb08b72038ba3&token=1613702159&lang=zh_CN#rd) - -- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd) - - -- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd) - -- [【2020-09-12】向各位汇报,再也不敢鸽了,人生处处有惊喜](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484784&idx=1&sn=ae73f1f4e53b622039a75ec41cabe378&chksm=fcdfbcfccba835eafefe304913e4078cf8dfac22f62fd9d686b307bbdf46d147016f5e876e05&token=639111151&lang=zh_CN#rd) - - -- [【2020-09-13】来来来,无厘头技术(水)文,各种尬。简简单单评价一下](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=1&sn=10d26a600112ec4f95b3b3f470955744&chksm=fcdfbc03cba83515b07f0ae6cee791d1fb5fd619364cff3a17a4deab91333f0a6277b09a66a9&token=639111151&lang=zh_CN#rd) - -- [【2020-09-13】基础Brew和Tree的安装实录](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=2&sn=94a6455ed6b17fa5b27e96358e935803&chksm=fcdfbc03cba83515d13dcfc2dea2445085a34ff4360e0a367fd914bb04bc6ba18a780a0cd2d2&token=639111151&lang=zh_CN#rd) - -- [【2020-09-13】PM2进程管理,给我学!](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=3&sn=38a289efffda9510b5ff04c5bed0663e&chksm=fcdfbc03cba835154c888b9d7f86eac85c250eefb9d053687173274373f2f8d7b19fc307e76a&token=639111151&lang=zh_CN#rd) - -- [【2020-09-14】数据结构,一定要学废了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484823&idx=1&sn=d41bb8da02585cf9ea8d0b3ef27e3dbb&chksm=fcdfbc1bcba8350d84ba2f01eaf187cbaa2d4cf5a9078beb1f2fafe94edb0126c82595ed8191&token=368257571&lang=zh_CN#rd) - -- [【2020-09-16】ELK基础概念与常用架构整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484837&idx=1&sn=7f0de3eeea3fc6ee299587704f5c44cd&chksm=fcdfbc29cba8353fd894582da7ae2c93b5920c4dbb1e197b011a817dc0962e317842a32d5560&token=368257571&lang=zh_CN#rd) - - -- [【2020-09-17】分享书上一段话,问一个问题](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=1&sn=7af55ef3a7d843d9c43de6d6c7911da3&chksm=fcdfbc3ecba835287b2c644cda606454a713d370fbd7d14714b22a04277f7a7784b96b8b277e&token=368257571&lang=zh_CN#rd) - - -- [【2020-09-17】看源码遇到的三个知识点,一个也没懂](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=2&sn=c59839c677d7c9652a09d1f8c70ef8d6&chksm=fcdfbc3ecba83528cf8271a2615129340a6f11954b6d9396160d0fb2c41593253d5e3510a031&token=368257571&lang=zh_CN#rd) - - -- [【2020-09-20】express()函数整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=2&sn=63e6b669341217135013816464dd5bd9&chksm=fcdfbc4dcba8355b4de0f712047709425a35fa3b122378b31f0e4db3afb82dfd38872862aab4&token=368257571&lang=zh_CN#rd) - - -- [【2020-09-22】入秋了,安好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=1&sn=e39e3547da49f40e1b64deadf9a9cfef&chksm=fcdfbc4dcba8355bfa9c8b9531a463fc652b764064528dd6c243f47a157b20e017bad3f410f4&token=368257571&lang=zh_CN#rd) - - -- [【2020-09-22】Nginx安装详解,我服务器上也是这样的](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=1&sn=b1073522cfd3ce6ebbe85e85ad4e35e0&chksm=fcdfbc6dcba8357bdb212c9db1378a045d0dcfd95b79ed05688180f05d2b391f9b724d0d752f&token=368257571&lang=zh_CN#rd) - -- [【2020-09-22】被攻击的一天](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=2&sn=34c61ed01c6522d2861be3342ec12ad5&chksm=fcdfbc6dcba8357b76eb0fe6c502d932def6cd232297b010f9b2f9a1fca35c38df77dacce7f2&token=368257571&lang=zh_CN#rd) - - -- [【2020-09-26】跟父亲视频的一个半小时,聊到了我,也聊到了Ta](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484929&idx=1&sn=394783dd2bfd65da24ae6dcb89d69ec6&chksm=fcdfbf8dcba8369b926b7083bbe3515aa5857f7589acc3f9d6d4987c67539a76dbd6e3cb70a1&token=368257571&lang=zh_CN#rd) - - -#### 10月 -- [【2020-10-07】时间太快,溜了溜了,杭州见](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484943&idx=1&sn=ad37db87dc40f381fd18cc828e492384&chksm=fcdfbf83cba8369598fc2773b63df235a9719b43749e7daab753c621fef5af4fba054dbb46ea&token=368257571&lang=zh_CN#rd) - -- [【2020-10-14】写不了代码就不写嘛](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484951&idx=1&sn=edddf3d6c8f3fc6dd1d14063b536c732&chksm=fcdfbf9bcba8368d81ddffcbd258f7e4b7fb573d2a8963859e1b156e8a5f5d81f5629c49be6e&token=368257571&lang=zh_CN#rd) - -- [【2020-10-18】我不行了,这号关注量男女7:3 还怎么相亲嘛?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484968&idx=1&sn=d37960ed81044fbf314440af85049d65&chksm=fcdfbfa4cba836b25082535910f7137d1513d834d54fbfadf48a433b29511ccf4d532f19b88a&token=368257571&lang=zh_CN#rd) - -- [【2020-10-26】悄悄接你下班,陪你回家](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484988&idx=1&sn=947c487946fa3574d33e9c6861a1ee28&chksm=fcdfbfb0cba836a626d2efa904a5177c2e0916c381b26c89b6dcfc610a380b906d4480f7cc9b&token=368257571&lang=zh_CN#rd) - - -#### 11月 - -- [【2020-11-01】11月,你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485002&idx=1&sn=3760eba58f7ded433b71bec48b89a681&chksm=fcdfbfc6cba836d0b7db1f2aa5a4a884f68f8ce20a59aa44b4ac46c59eb4dd1c233079241a4a&token=368257571&lang=zh_CN#rd) - -- [【2020-11-15】她来了她来了,她带着剪了三遍的视频来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485042&idx=1&sn=181ae5062c31ee7931390607b6f10358&chksm=fcdfbffecba836e8275c849007470db6964f7cd675af59fe73c94369334d17d4840e8c0413d5&token=898438314&lang=zh_CN#rd) - - -- [【2020-11-18】陪我一路的小姐姐,谢谢啦~ 我大意了呀,没有闪](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485053&idx=1&sn=ed2fe0de87b70781cdb7755ef4726340&chksm=fcdfbff1cba836e7165dc53722aaf96ef38d8f43cfadadcb4695d8ff430ea64619caada81cfa&token=1939941957&lang=zh_CN#rd) - -- [【2020-11-30】11月的尾巴,12月你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485066&idx=1&sn=1d357917f548a6d977af96c6582db527&chksm=fcdfbf06cba836103152f7a3fdfbf97c1be2472a84f824cbddd532c15aefe14c71b3b076233f&token=831506871&lang=zh_CN#rd) - -#### 12月 - -- [【2020-12-06】周末小记——忆旧友、吃火锅,也会感慨](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485080&idx=2&sn=bdc551f2e9bf54dc01881979339af8ad&chksm=fcdfbf14cba836022a05854547cbca03b5a08b912a0e0f195d4856d6b53ecd78aee2f167b515&token=1581389686&lang=zh_CN#rd) - - -- [【2020-12-10】上火、牙疼,也要砍程序媛一刀](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485100&idx=1&sn=e7c0c41229d51ebfab2939deb1751672&chksm=fcdfbf20cba836364da35ab5acfed076876aae486126bc1c41cdd2502cc89a41cbde7c645610&token=1054397108&lang=zh_CN#rd) - - -- [【2020-12-17】今晚不蹦迪,来聊一聊个人项目的接口返回](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485136&idx=1&sn=4619fb835e6d57e106ab01116012662a&chksm=fcdfbf5ccba8364aecddf14d11ed8ba36f38050b83b30b8d46e10f86b164aab05322b8455b36&token=755050934&lang=zh_CN#rd) - -- [【2020-12-20】事情,从英吉利海岸的那杯卡布奇诺美式咖啡说起](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485180&idx=1&sn=15ab9be3e15130103f26c919cbe0b605&chksm=fcdfbf70cba83666d287acc35485d02ddf67bacad6ea46d9ef04521f9f429fcb015d371c918e&token=1356818265&lang=zh_CN#rd) - - -### 2021年 - - -#### 1月 - - -- [【2021-01-06】谁在看小王子呀~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485228&idx=1&sn=1c30866a209af2a5eb927fd7bd63cc8b&chksm=fcdfbea0cba837b6d4cf9865b72a6a1553c4d9b6a6cce369bb09f66730ab37ec649071e7ab7c&token=1356818265&lang=zh_CN#rd) - - -- [【2021-01-15】2020小结,没事就点点看看呗,反正小目标都没完成](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485249&idx=1&sn=dadf2a6dbed1879bbd98c62491436a9c&chksm=fcdfbecdcba837db5c11b8023ffa7ad6cf5a47c03027a0029604a50d0a77c75908efc05af39a&token=1356818265&lang=zh_CN#rd) - -- [【2021-01-17】搞波大的,浅谈深拷贝——文末有彩蛋](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485258&idx=1&sn=fb71007a5feed8e18674be27b1c749ab&chksm=fcdfbec6cba837d099e90a5f45781ee8cac474388e25ad9383a4fbc05fdb16a8e1377265c018&token=1356818265&lang=zh_CN#rd) - - -- [【2021-01-18】到底该如何发布Npm插件,常用指令在这里](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485277&idx=1&sn=9eb7c3cef21ace2cc5853e382f2bb03f&chksm=fcdfbed1cba837c7839f3b57836f43b3425c8b5a7888f543bf4a1dd8b39cd82ed7d51a24a685&token=1356818265&lang=zh_CN#rd) - - -- [【2021-01-20】好用的AntDocs,也来学着用一下,基本过程整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485291&idx=1&sn=19f13df8131a9f662973f2d9240c1eab&chksm=fcdfbee7cba837f180d8ad30735cd61e6c73fe195e63d46046bb24f80e1536aa0a585c3e1015&token=1356818265&lang=zh_CN#rd) - - -- [【2021-01-27】【持续更新】从查找算法开始数据结构入门,大家都在掘金等你](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485318&idx=1&sn=6ae5fc9f1cf994818ff89d53a926761e&chksm=fcdfbe0acba8371c9d0025008084857cf14c52b01dfb1b9460d3388ba543c36da2abcbf90216&token=1356818265&lang=zh_CN#rd) - - -- [【2021-01-30】ORM框架入门之Sequelize,我快翻译不动了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485341&idx=1&sn=fc493c28ab138056567e916b769ddbf2&chksm=fcdfbe11cba8370793e8e0d71e7766f4e1e7f3e8672921d6b98757f7d7b271b290f3edc65d6f&token=1356818265&lang=zh_CN#rd) - -#### 2月 - -- [【2021-02-07】被妹妹支配的一周,晚上差点连家都回不去..](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485376&idx=1&sn=049a5df5cb97786e80aded38a1bf3732&chksm=fcdfbe4ccba8375a52cb8d7077836216e5f5f41ee9453aebf524eb0a5d8a5db48cbabc11f3e4&token=1356818265&lang=zh_CN#rd) - - -- [【2021-02-11】【新年快乐】程序员的2020,就这样悄咪咪地溜走了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485404&idx=1&sn=276100858df23daf987dbc68997477df&chksm=fcdfbe50cba837460079fc9ab414754a49668f82dc0f6a5a41ec320d3e5dd77c1a8c271e061b&token=1356818265&lang=zh_CN#rd) - - -- [【2021-02-13】抢红包、拼手气来啦,之前答应的抽奖变成新年红包啦~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485420&idx=1&sn=26c0e3690363af5dddd805ae417eeee9&chksm=fcdfbe60cba8377645e44333ccbe35147b9844578008e5699aba62b82c12fc03634e2d68781c&token=1356818265&lang=zh_CN#rd) - -## 赞赏支持 - - -> 相逢不用忙归去,明日黄花蝶也愁;若系列文章对你有帮助,不如请作者喝一杯伏见桃山... -> -> **赞赏过的一定要扫下方右侧微信跟我说呀!!!!!!** - - -
- - - -
- - -## 联系我 - - -> 对仓库有任何问题或建议,欢迎微信“骚扰”,商务合作请备注! -
- -
- - -## 鸣谢 - - -以下排名不分先后!([详细统计]()) - - - - - -## 赞助列表 - -以下排名不分先后! - - - - - - -## 公众号 - - -如果大家想要实时关注我更新的文章以及我的日常的话,可以关注我的公众号,基本每天都会更新技术和各种吹水文章,就当做是记录心情、成长的地方吧 - - - -
- -
\ No newline at end of file diff --git a/manuscripts/category/about_author.md b/manuscripts/category/about_author.md deleted file mode 100644 index d723819..0000000 --- a/manuscripts/category/about_author.md +++ /dev/null @@ -1,121 +0,0 @@ ---- -title: 关于作者 -sidebarDepth: 0 -date: 2021-01-19 08:04:19 -permalink: /pages/15aa63/ -categories: - - category -tags: - - ---- - - -## 我在做哪些事情? - -### 代码开源 - - - -| 仓库名称 | 链接地址 | 当前状态 | -| :----: | :----: |:----: | -| **bilibili-reptile** | [https://github.com/mmdapl/bilibili-reptile](hhttps://github.com/mmdapl/bilibili-reptile) | done | -| **project-display** | [https://github.com/mmdapl/project-display](https://github.com/mmdapl/project-display) | done | - - -### 知识仓库 - -利用业余时间,结合工作经验,以JavaScript和CS专业课为主题,持续维护的知识文档型仓库,其中 -- `408CSFamily` 主攻计算机408基础知识,以考研基础作为切入点 -- `JavaScriptCollection` 偏向工作实战,以JavaScript技术栈及周边技术作为切入点 - - - -| 仓库名称 | 链接地址 | 当前状态 | -| :----: | :----: |:----: | -| **408CSFamily** | [https://github.com/mmdapl/408CSFamily](https://github.com/mmdapl/408CSFamily) | 日常维护 | -| **JavaScriptCollection** | [https://github.com/mmdapl/JavaScriptCollection](https://github.com/mmdapl/JavaScriptCollection) | 日常维护 | - -### npm插件 - - - -| 插件名称 | 链接地址 |当前状态 | -| :----: | :----: |:----: | -| **egg-axios-plus**| [https://github.com/mmdapl/egg-axios-plus](https://github.com/mmdapl/egg-axios-plus) | done | -| **egg-sequelize-plus** | [https://github.com/mmdapl/egg-sequelize-plus](https://github.com/mmdapl/egg-sequelize-plus) | done | -| **grpc相关** | [https://github.com/mmdapl](https://github.com/mmdapl) | doing | - -### 项目 - -> 正在整理汇总 - -#### 工作项目 - -> 采用分布式微服务架构的邮箱类项目,涉及服务网关、消息队列、Apollo配置中心、Consul服务注册发现、redis集群及优化、mysql集群及优化、grpc远程调用、Oauth2授权认证等功能的新框架重构项目,待整理 - -#### 日常项目 - -> oauth2授权平台.... - - - -## 平台账号 - -「目前活跃于Bilibili、Github上,新注册了掘金、微信公众号,均可直接搜:**Rong姐姐好可爱**,访问主页;所有内容以微信公众号和Github为准,选择部分公众号内容发表博客」 - - -| 平台名称 | 链接地址 | -| :----: | :----: | -| **Bilibili** | [https://space.bilibili.com/350937042](https://space.bilibili.com/350937042) | -| **CSDN** | [https://blog.csdn.net/Mmdapl](https://blog.csdn.net/Mmdapl) | -| **Github** | [https://github.com/mmdapl](https://github.com/mmdapl) | -| **掘金** | [https://juejin.im/user/448256476724807](https://juejin.im/user/448256476724807)| - - - - - -## 联系我 - - -对仓库有任何问题或建议,欢迎公众号留言“骚扰”,商务合作请备注! - - -
- -
- - - - -## 公众号 - - -- 相逢不用忙归去,明日黄花蝶也愁.... - -- **若系列文章对你有所帮助,不如来公众号交个朋友吧.** - - diff --git a/manuscripts/category/reader_donate.md b/manuscripts/category/reader_donate.md deleted file mode 100644 index 749a573..0000000 --- a/manuscripts/category/reader_donate.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: 赞赏支持 -sidebarDepth: 0 -date: 2021-01-19 08:04:19 -permalink: /pages/c33acd/ -categories: - - category -tags: - - ---- - - - - - - - -## 赞赏支持 - -- 相逢不用忙归去,明日黄花蝶也愁;若系列文章对你有帮助,不如请作者喝一杯伏见桃山... -- **赞赏过的一定要扫下方右侧微信跟我说呀!!!!!!** - - - - -
- - - -
- - -## 鸣谢列表 - - -以下排名不分先后!([详细统计]()) - - - - - -## 赞助列表 - -以下排名不分先后! diff --git a/manuscripts/category/sidebar_contents.js b/manuscripts/category/sidebar_contents.js deleted file mode 100644 index 9042c5c..0000000 --- a/manuscripts/category/sidebar_contents.js +++ /dev/null @@ -1,15 +0,0 @@ -/* - * @Description: - * @Version: Beta1.0 - * @Author: 【B站&公众号】Rong姐姐好可爱 - * @Date: 2021-01-19 08:04:19 - * @LastEditors: 【B站&公众号】Rong姐姐好可爱 - * @LastEditTime: 2021-02-14 21:23:32 - */ -module.exports = [ - // "/category/", - "update_logs", - "about_author", - "reader_donate", - -]; diff --git a/manuscripts/category/test/1.test.md b/manuscripts/category/test/1.test.md deleted file mode 100644 index d5e8fbc..0000000 --- a/manuscripts/category/test/1.test.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: test -date: 2021-03-07 23:06:30 -permalink: /pages/10b7a4/ -categories: - - category - - test -tags: - - ---- - -werwre \ No newline at end of file diff --git a/manuscripts/category/update_logs.md b/manuscripts/category/update_logs.md deleted file mode 100644 index ae92847..0000000 --- a/manuscripts/category/update_logs.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: 更新日志 -sidebarDepth: 0 -date: 2021-02-14 20:52:54 -permalink: /pages/bdad06/ -categories: - - category -tags: - - ---- - - -# - - - -## 基本说明 - - -- 优化表示优化、已完成、可正式使用状态。 -- 紫色表示修复、可测试状态。 -- 红色红色表示出现异常、告警、错误状态。 -- 橙色表示新增、正在进行、默认状态。 - - -## 提交记录 - -以下为个人Github账号**Rong姐姐好可爱**所有仓库代码提交记录 - -![](https://ghchart.rshah.org/mmdapl) - -## 版本记录 - - -### 0.1.2 - -**2020-11-01** - -- Egg.js框架基础整理完成 -- 基于VuePress进行md文档修订,规整文档样式及模板 - -### 0.1.1 - -**2020-10-09** - -- 2332第一篇egg相关文档 -- 初次接触VuePress \ No newline at end of file diff --git a/manuscripts/数据结构/code/BinaryInsertSort.cpp b/manuscripts/数据结构/code/BinaryInsertSort.cpp index 91de713..c55dbe8 100644 --- a/manuscripts/数据结构/code/BinaryInsertSort.cpp +++ b/manuscripts/数据结构/code/BinaryInsertSort.cpp @@ -9,16 +9,16 @@ void BinaryInsertSort(ElemType Arr[],int n){ - int i,j,lowIndex,hightIndex,midIndex; + int i,j,lowIndex,heightIndex,midIndex; for(i=2;j<=n;i++){ // 将待排序的元素暂存在Arr[0]上 Arr[0]=Arr[i]; lowIndex=1; // 左侧子表 折半查找起始位置 - hightIndex=i-1; // 左侧子表 折半查找结束位置 + heightIndex=i-1; // 左侧子表 折半查找结束位置 - while(lowIndex<=hightIndex){ + while(lowIndex<=heightIndex){ // 左侧有序子表的中间位置角标 midIndex=(lowIndex+hightIndex)/2; @@ -34,12 +34,11 @@ void BinaryInsertSort(ElemType Arr[],int n){ // 跳出循环需要(lowIndex>hightIndex),说明待插入位置的角标在hightIndex之后,为 hightIndex+1,此时需要将(hightIndex,i)之间的所有元素后移 - - for(j=i-1;j>hightIndex;--j){ + for(j=i-1;j>heightIndex;--j){ Arr[j+1]=Arr[j] } // 后移完成后,将元素Arr[0]赋值到位置(hightIndex+1)上 - Arr[hightIndex+1]=Arr[0] + Arr[heightIndex+1]=Arr[0] } } diff --git a/manuscripts/数据结构/基础入门/1.基础概念.md b/manuscripts/数据结构/基础入门/1.基础概念.md index 34d433a..75e3d02 100644 --- a/manuscripts/数据结构/基础入门/1.基础概念.md +++ b/manuscripts/数据结构/基础入门/1.基础概念.md @@ -1,6 +1,6 @@ -## 基础概念 +# 基础概念 ### 数据 diff --git a/manuscripts/数据结构/基础入门/2.数据结构三要素.md b/manuscripts/数据结构/基础入门/2.数据结构三要素.md index 347587c..9976baa 100644 --- a/manuscripts/数据结构/基础入门/2.数据结构三要素.md +++ b/manuscripts/数据结构/基础入门/2.数据结构三要素.md @@ -1,6 +1,6 @@ -## 数据结构三要素 +# 数据结构三要素 - 数据的逻辑结构 - 数据的存储结构 diff --git a/manuscripts/数据结构/基础入门/3.算法和算法评价.md b/manuscripts/数据结构/基础入门/3.算法和算法评价.md index f176118..00345a3 100644 --- a/manuscripts/数据结构/基础入门/3.算法和算法评价.md +++ b/manuscripts/数据结构/基础入门/3.算法和算法评价.md @@ -1,5 +1,5 @@ -## 算法和算法评价 +# 算法和算法评价 ### 算法 diff --git a/manuscripts/数据结构/基础入门/Readme.md b/manuscripts/数据结构/基础入门/readme.md similarity index 51% rename from manuscripts/数据结构/基础入门/Readme.md rename to manuscripts/数据结构/基础入门/readme.md index 5bb7d6b..bf43eab 100644 --- a/manuscripts/数据结构/基础入门/Readme.md +++ b/manuscripts/数据结构/基础入门/readme.md @@ -13,8 +13,8 @@ ### 主要内容 -- [基础概念](/数据结构/基础入门/1.基础概念.md) -- [数据结构三要素](/数据结构/基础入门/2.数据结构三要素.md) -- [算法与算法评价](/数据结构/基础入门/3.算法和算法评价.md) +- [基础概念](1.基础概念.md) +- [数据结构三要素](2.数据结构三要素.md) +- [算法与算法评价](3.算法和算法评价.md) -![](/数据结构/基础入门/基础入门_水印.jpg) \ No newline at end of file +![](./基础入门_水印.jpg) \ No newline at end of file diff --git a/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md b/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md index 030f3f7..3840dad 100644 --- a/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md +++ b/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md @@ -17,7 +17,7 @@ - 明确栈是一种线性表 - 限定栈只能在某一端进行插入或者删除操作 -![栈的顺序结构](数据结构/栈和队列/images/栈的基本结构.png) +![栈的顺序结构](./images/栈的基本结构.png) `栈顶`:线性表允许进行插入和删除的一端。 diff --git a/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md b/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md index 5052ad7..6e0675e 100644 --- a/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md +++ b/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md @@ -196,7 +196,7 @@ bool GetTop(SqStack S,ElemType &x){ >Tips: 类似头对头,一致对外这种感觉,噗呲哈哈 -![顺序栈共享存储空间](数据结构/栈和队列/images/顺序栈共享存储空间.png) +![顺序栈共享存储空间](./images/顺序栈共享存储空间.png) 在上面的共享栈结构图中,两个栈(0、1号顺序栈)的栈顶指针都指向栈顶元素 diff --git a/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md b/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md index 81f3ea6..f070945 100644 --- a/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md +++ b/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md @@ -22,7 +22,7 @@ **通常对于链栈来说,是不需要头结点的,当然也存在带头结点的链栈** -![](数据结构/栈和队列/images/栈的链式存储结构.png) +![](./images/栈的链式存储结构.png) 栈的链式存储类型: diff --git a/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md b/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md index 36be4e6..6aab142 100644 --- a/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md +++ b/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md @@ -21,7 +21,7 @@ `出队`: 删除队列元素,也叫做`离队` -![](/数据结构/栈和队列/images/队列的基本结构.png) +![](./images/队列的基本结构.png) 结合生活中排队的经验,在群体素质高、无人插队的情况下(`薛定谔排队`,噗呲,哈哈哈),**一般最早排队的也是最早离队的**,和栈的`后进先出`不一样的是,队列是`先进先出`的,即:First In Frist Out diff --git a/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md b/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md index 3db7b26..bed171d 100644 --- a/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md +++ b/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md @@ -44,7 +44,7 @@ typedef struct { -![](/数据结构/栈和队列/images/入队.png) +![](./images/入队.png) 在空队列中,初始状态为`Q.front===Q.rear==0`,当元素a入队时,队尾指针rear后移+1,入队成功后,`Q.front==0`、`Q.rear==1`,在队不满的情况下进队,都是`先赋值给队尾元素,再移动队尾指针rear+1`,通过上面的图宝贝可以看到,队列被元素打满的时: @@ -54,7 +54,7 @@ typedef struct { > Tips: MaxSize为队列结构体定义中,最大存储元素个数哦~ -![](/数据结构/栈和队列/images/出队.png) +![](./images/出队.png) 进队说完了,那给宝贝来说说出队吧。以上图为例,队列中`Q.rear==Maxsize`、`Q.front==0`;当出现元素在队首出队,就会直接影响队首指针,从上面的流程上看: @@ -90,7 +90,7 @@ typedef struct { 在上面的顺序队列中,当队满后进行出队列,由于顺序队列出队只在队首进行操作,并且只会修改队首指针,这时候就会出现队尾指针一直`Q.rear===MaxSize`情况,就如下: -![队列队满情况分析](/数据结构/栈和队列/images/队列队满情况分析.png) +![队列队满情况分析](./images/队列队满情况分析.png) 可以很明显的看到,明明队列不满,但是由于进队列只能在队尾操作,因此不能进行进队操作;通常在这种情况下入队就会出现“上溢出”。 @@ -109,7 +109,7 @@ typedef struct { -![](/数据结构/栈和队列/images/循环队列初始化.png) +![](./images/循环队列初始化.png) 当队首指针`Q.front=MaxSize-1`后,再有元素`出队`就前进一个位置自动到位置0了【注意:可以结合时钟来理解,一圈转完了】 @@ -127,7 +127,7 @@ typedef struct { **和时钟一样,顺时钟进行时间变换,在出队、入队时,队首、队尾指针都是按顺时针方向进1** -![](/数据结构/栈和队列/images/循环队列入队.png) +![](./images/循环队列入队.png) 如上图,循环队列从最开始初始化为空队列时:`Q.front==Q.rear==0`,经过元素a入队,队尾指针顺时针前移`Q.rear+1`,到元素a、b、c、d陆续入队,就好像时钟转完了一圈,循环队列已满,此时发现:`Q.front==Q.rear==0`在队满时候依然成立,所以结合前面提到的初始化对空条件:`Q.front==Q.rear==0`,用`Q.front==Q.rear`来区分`队空`和`队满`是非常不合适的。 diff --git a/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md b/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md index 97c15f9..70ccdee 100644 --- a/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md +++ b/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md @@ -22,7 +22,7 @@ > - 队头指针指向队头元素 > - 队尾指针指向队尾元素的下一个位置 -[//]: # (![](/数据结构/栈和队列/images/不带头结点的链式队列.png)) +![](./images/不带头结点的链式队列.png) 队列的链式存储结构: @@ -53,7 +53,7 @@ typedef struct{ 仔细思考上面的入队、出队操作,都需要考虑队空的情况下的特殊处理,不带头结点的队列导致队空队首和队尾指针都为NULL,比较麻烦;结合之前整理、学习过的单链表,套用一下先贤的思路,也整上一个头结点,就会发现容易处理很多; -![](/数据结构/栈和队列/images/带头结点的链式队列.png) +![](./images/带头结点的链式队列.png) 链式队列加上头结点后,之前较为复杂的入队、出队操作就统一起来了。 @@ -198,7 +198,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){ 出队的时候明显有些绕,需要明确队列中头结点的存在,出队出的是单链表中头结点的后一个结点,同时要确保整个过程`不断链` -![](/数据结构/栈和队列/images/链式队列出队.png) +![](./images/链式队列出队.png) @@ -206,7 +206,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){ `双端队列`: 允许在两端都可以进行入队和出队操作的队列,元素的逻辑结构仍然是线性结构 -![](/数据结构/栈和队列/images/双端队列.png) +![](./images/双端队列.png) **双端队列的两端分别称为`前端`和`后端`,两端都可以`入队`和`出队`** diff --git a/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md b/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md index 9ba49ae..8bcac2d 100644 --- a/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md +++ b/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md @@ -59,7 +59,7 @@ -![](/数据结构/栈和队列/images/稀疏矩阵的存储变换.png) +![](/./images/稀疏矩阵的存储变换.png) 三元组的结点存储了行标(row)、列表(col)、值(value)三种信息,是主要用来存储稀疏矩阵的一种数据结构。 diff --git a/manuscripts/数据结构/栈和队列/Readme.md b/manuscripts/数据结构/栈和队列/Readme.md deleted file mode 100644 index 2049b01..0000000 --- a/manuscripts/数据结构/栈和队列/Readme.md +++ /dev/null @@ -1,24 +0,0 @@ - - - -## 栈和队列 - -### 主要内容 - -- [栈的基本概念和基本操作](/数据结构/栈和队列/1.栈的基本概念和基本操作.md) -- [栈的顺序存储结构](/数据结构/栈和队列/2.栈的顺序存储结构.md) -- [栈的链式存储结构](/数据结构/栈和队列/3.栈链式存储结构.md) -- [队列的基本概念和基础操作](/数据结构/栈和队列/4.队列的基本概念和基础操作.md) -- [队列的顺序存储](/数据结构/栈和队列/5.队列的顺序存储结构.md) -- [队列的链式存储](/数据结构/栈和队列/6.队列的链式存储结构.md) -- [栈和队列的应用](/数据结构/栈和队列/栈和队列的应用.md) -- [特殊矩阵的压缩存储](/数据结构/栈和队列/8.特殊矩阵的压缩存储.md) - -![](/数据结构/栈和队列/栈和队列_水印.png) \ No newline at end of file diff --git a/manuscripts/数据结构/栈和队列/readme.md b/manuscripts/数据结构/栈和队列/readme.md new file mode 100644 index 0000000..4744fe6 --- /dev/null +++ b/manuscripts/数据结构/栈和队列/readme.md @@ -0,0 +1,24 @@ + + + +## 栈和队列 + +### 主要内容 + +- [栈的基本概念和基本操作](1.栈的基本概念和基本操作.md) +- [栈的顺序存储结构](2.栈的顺序存储结构.md) +- [栈的链式存储结构](3.栈链式存储结构.md) +- [队列的基本概念和基础操作](4.队列的基本概念和基础操作.md) +- [队列的顺序存储](5.队列的顺序存储结构.md) +- [队列的链式存储](6.队列的链式存储结构.md) +- [栈和队列的应用](7.栈和队列的应用.md) +- [特殊矩阵的压缩存储](8.特殊矩阵的压缩存储.md) + +![](./栈和队列_水印.png) \ No newline at end of file diff --git a/manuscripts/数据结构/线性表/2.线性表的顺序表示.md b/manuscripts/数据结构/线性表/2.线性表的顺序表示.md index 41b5504..35af57a 100644 --- a/manuscripts/数据结构/线性表/2.线性表的顺序表示.md +++ b/manuscripts/数据结构/线性表/2.线性表的顺序表示.md @@ -15,7 +15,7 @@ `顺序表`:顺序存储的线性表,**是用一组地址连续的存储单元,依次存储线性表中的数据元素,使得在逻辑上相邻的两个元素在物理位置上也相邻。** -![](/数据结构/线性表/images/线性表的存储结构.png) +![](./images/线性表的存储结构.png) @@ -148,7 +148,7 @@ bool ListInsert(SqList &L, int i, ElemType e){ **时间复杂度** -![](/数据结构/线性表/images/顺序表插入平均时间复杂度计算.png) +![](./images/顺序表插入平均时间复杂度计算.png) - 最好情况:在表尾插入,元素向后移动循环没有执行,时间复杂度O(1); - 最坏情况:在表头插入,元素后移循环执行n次,时间复杂度为O(n); diff --git a/manuscripts/数据结构/线性表/Readme.md b/manuscripts/数据结构/线性表/Readme.md deleted file mode 100644 index ffe8194..0000000 --- a/manuscripts/数据结构/线性表/Readme.md +++ /dev/null @@ -1,29 +0,0 @@ - - - -## 线性表 - - -### 主要内容 - -- [基础概念和基本操作](/manuscripts/数据结构/线性表/1.基础概念和基本操作.md) -- [线性表的顺序表示](/manuscripts/数据结构/线性表/2.线性表的顺序表示.md) -- [线性表的链式表示之单链表](/数据结构/线性表/3.线性表的链式表示.md) -- [线性表的链式表示之双链表](/manuscripts/数据结构/线性表/4.线性表的链式表示【双链表】.md) -- [线性表的链式表示之循环链表](/manuscripts/数据结构/线性表/5.线性表的链式表示【循环链表】.md) -- [线性表的链式表示之静态链表](/manuscripts/数据结构/线性表/6.线性表的链式表示【静态链表】.md) -- [顺序表和链表的比较](/manuscripts/数据结构/线性表/7.顺序表和链表的比较.md) -- [存储结构的选取](/manuscripts/数据结构/线性表/8.存储结构的选取.md) -- [零碎知识补充](/manuscripts/数据结构/线性表/9.零碎知识补充.md) - - -![](/数据结构/线性表/线性表_水印.png) - - diff --git a/manuscripts/数据结构/线性表/readme.md b/manuscripts/数据结构/线性表/readme.md new file mode 100644 index 0000000..cb90f8e --- /dev/null +++ b/manuscripts/数据结构/线性表/readme.md @@ -0,0 +1,29 @@ + + + +## 线性表 + + +### 主要内容 + +- [基础概念和基本操作](1.基础概念和基本操作.md) +- [线性表的顺序表示](2.线性表的顺序表示.md) +- [线性表的链式表示之单链表](/数据结构/线性表/3.线性表的链式表示.md) +- [线性表的链式表示之双链表](4.线性表的链式表示【双链表】.md) +- [线性表的链式表示之循环链表](5.线性表的链式表示【循环链表】.md) +- [线性表的链式表示之静态链表](6.线性表的链式表示【静态链表】.md) +- [顺序表和链表的比较](7.顺序表和链表的比较.md) +- [存储结构的选取](8.存储结构的选取.md) +- [零碎知识补充](9.零碎知识补充.md) + + +![](./数据结构/线性表/线性表_水印.png) + + diff --git a/package.json b/package.json index 80a2c59..66afe90 100644 --- a/package.json +++ b/package.json @@ -19,11 +19,22 @@ "url": "https://github.com/142vip" }, "devDependencies": { - "@vuepress/client": "2.0.0-beta.60", + "@typescript-eslint/eslint-plugin": "^5.54.0", + "@typescript-eslint/parser": "^5.54.0", + "@vuepress/client": "2.0.0-beta.61", + "@vuepress/utils": "2.0.0-beta.61", + "eslint": "^8.35.0", + "eslint-config-standard": "^17.0.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-n": "^15.6.1", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-vue": "^9.9.0", + "husky": "^8.0.3", + "typescript": "^3.9.10", "vue": "^3.2.47", - "vuepress": "2.0.0-beta.60", - "vuepress-plugin-search-pro": "^2.0.0-beta.172", - "vuepress-theme-hope": "^2.0.0-beta.172" + "vuepress": "2.0.0-beta.61", + "vuepress-plugin-search-pro": "2.0.0-beta.185", + "vuepress-theme-hope": "2.0.0-beta.185" }, "license": "MIT" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c7a02c..608ad8e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,18 +1,40 @@ -lockfileVersion: 5.3 +lockfileVersion: 5.4 specifiers: - '@vuepress/client': 2.0.0-beta.60 + '@typescript-eslint/eslint-plugin': ^5.54.0 + '@typescript-eslint/parser': ^5.54.0 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + eslint: ^8.35.0 + eslint-config-standard: ^17.0.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-n: ^15.6.1 + eslint-plugin-promise: ^6.1.1 + eslint-plugin-vue: ^9.9.0 + husky: ^8.0.3 + typescript: ^3.9.10 vue: ^3.2.47 - vuepress: 2.0.0-beta.60 - vuepress-plugin-search-pro: ^2.0.0-beta.172 - vuepress-theme-hope: ^2.0.0-beta.172 + vuepress: 2.0.0-beta.61 + vuepress-plugin-search-pro: 2.0.0-beta.185 + vuepress-theme-hope: 2.0.0-beta.185 devDependencies: - '@vuepress/client': 2.0.0-beta.60 + '@typescript-eslint/eslint-plugin': 5.54.0_rnadeopnlkrqw7c6bwgkipvmrq + '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + eslint: 8.35.0 + eslint-config-standard: 17.0.0_hwjsujmtoc7k47rjh5qfu7woty + eslint-plugin-import: 2.27.5_ajyizmi44oc3hrc35l6ndh7p4e + eslint-plugin-n: 15.6.1_eslint@8.35.0 + eslint-plugin-promise: 6.1.1_eslint@8.35.0 + eslint-plugin-vue: 9.9.0_eslint@8.35.0 + husky: 8.0.3 + typescript: 3.9.10 vue: 3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-search-pro: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-theme-hope: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-search-pro: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-theme-hope: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe packages: @@ -48,20 +70,20 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.20.12: - resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} + /@babel/core/7.21.0: + resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.14 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 - '@babel/helper-module-transforms': 7.20.11 - '@babel/helpers': 7.20.13 - '@babel/parser': 7.20.15 + '@babel/generator': 7.21.1 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-module-transforms': 7.21.2 + '@babel/helpers': 7.21.0 + '@babel/parser': 7.21.2 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.13 - '@babel/types': 7.20.7 + '@babel/traverse': 7.21.2 + '@babel/types': 7.21.2 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -71,12 +93,13 @@ packages: - supports-color dev: true - /@babel/generator/7.20.14: - resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==} + /@babel/generator/7.21.1: + resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.17 jsesc: 2.5.2 dev: true @@ -84,7 +107,7 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: @@ -92,33 +115,33 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true - /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.20.14 - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.5 lru-cache: 5.1.1 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12: + /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.21.0: resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 + '@babel/helper-function-name': 7.21.0 '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 @@ -128,24 +151,24 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12: + /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.21.0: resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.2 dev: true - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12: + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.0: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -164,40 +187,40 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true - /@babel/helper-function-name/7.19.0: - resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} + /@babel/helper-function-name/7.21.0: + resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.20.7 - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-member-expression-to-functions/7.20.7: resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true - /@babel/helper-module-transforms/7.20.11: - resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} + /@babel/helper-module-transforms/7.21.2: + resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 @@ -206,8 +229,8 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.13 - '@babel/types': 7.20.7 + '@babel/traverse': 7.21.2 + '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color dev: true @@ -216,7 +239,7 @@ packages: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-plugin-utils/7.20.2: @@ -224,17 +247,17 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color dev: true @@ -247,8 +270,8 @@ packages: '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.13 - '@babel/types': 7.20.7 + '@babel/traverse': 7.21.2 + '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color dev: true @@ -257,21 +280,21 @@ packages: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.21.2 dev: true /@babel/helper-string-parser/7.19.4: @@ -293,21 +316,21 @@ packages: resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.19.0 + '@babel/helper-function-name': 7.21.0 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.13 - '@babel/types': 7.20.7 + '@babel/traverse': 7.21.2 + '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.20.13: - resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==} + /@babel/helpers/7.21.0: + resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.20.7 - '@babel/traverse': 7.20.13 - '@babel/types': 7.20.7 + '@babel/traverse': 7.21.2 + '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color dev: true @@ -329,406 +352,414 @@ packages: '@babel/types': 7.20.7 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12: + /@babel/parser/7.21.2: + resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.21.2 + dev: true + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.14 - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12: + /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.21.0: resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.0: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.0: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.0: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12: + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.0: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.0: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.0: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.0: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.0: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-block-scoping/7.20.15_@babel+core@7.20.12: + /@babel/plugin-transform-block-scoping/7.20.15_@babel+core@7.21.0: resolution: {integrity: sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-classes/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 + '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 @@ -738,399 +769,399 @@ packages: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/template': 7.20.7 dev: true - /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.21.0: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 - '@babel/helper-function-name': 7.19.0 + '@babel/core': 7.21.0 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12: + /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.0: resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.20.11 + '@babel/core': 7.21.0 + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12: + /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.21.0: resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.20.11 + '@babel/core': 7.21.0 + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-simple-access': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12: + /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.0: resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-identifier': 7.19.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.20.11 + '@babel/core': 7.21.0 + '@babel/helper-module-transforms': 7.21.2 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12: + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.0: resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12: + /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.0: resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.0: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/preset-env/7.20.2_@babel+core@7.20.12: + /@babel/preset-env/7.20.2_@babel+core@7.21.0: resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.14 - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 - '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-block-scoping': 7.20.15_@babel+core@7.20.12 - '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12 - '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 - '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12 - '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 - '@babel/types': 7.20.7 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.20.15_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.0 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.21.0 + '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0 + '@babel/preset-modules': 0.1.5_@babel+core@7.21.0 + '@babel/types': 7.21.2 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0 core-js-compat: 3.27.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.20.12: + /@babel/preset-modules/0.1.5_@babel+core@7.21.0: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 - '@babel/types': 7.20.7 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 + '@babel/types': 7.21.2 esutils: 2.0.3 dev: true @@ -1146,22 +1177,22 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.20.15 - '@babel/types': 7.20.7 + '@babel/parser': 7.21.2 + '@babel/types': 7.21.2 dev: true - /@babel/traverse/7.20.13: - resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==} + /@babel/traverse/7.21.2: + resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.14 + '@babel/generator': 7.21.1 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 + '@babel/helper-function-name': 7.21.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.15 - '@babel/types': 7.20.7 + '@babel/parser': 7.21.2 + '@babel/types': 7.21.2 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -1177,6 +1208,15 @@ packages: to-fast-properties: 2.0.0 dev: true + /@babel/types/7.21.2: + resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + dev: true + /@braintree/sanitize-url/6.0.2: resolution: {integrity: sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg==} dev: true @@ -1379,6 +1419,48 @@ packages: dev: true optional: true + /@eslint/eslintrc/2.0.0: + resolution: {integrity: sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.4.1 + globals: 13.20.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js/8.35.0: + resolution: {integrity: sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@humanwhocodes/config-array/0.11.8: + resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/module-importer/1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + dev: true + + /@humanwhocodes/object-schema/1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + /@jridgewell/gen-mapping/0.1.1: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} @@ -1438,239 +1520,227 @@ packages: '@lit-labs/ssr-dom-shim': 1.0.0 dev: true - /@mdit-vue/plugin-component/0.11.2: - resolution: {integrity: sha512-ucFiEULCkLcCG1Tf1MfG5u5PS4BIXWIeKGHRGsXxz1ix2GbZWKFVgWEdNEckBu8s75Fv1WJLIOiAYZyri2f1nw==} + /@mdit-vue/plugin-component/0.12.0: + resolution: {integrity: sha512-LrwV3f0Y6H7b7m/w1Y3bkGuR3HOiBK4QiHHW3HuRMza6MZodDQbj8Baik5/V5GiSg1/ltijS1CymVcycd1EfTw==} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit-vue/plugin-frontmatter/0.11.1: - resolution: {integrity: sha512-AdZJInjD1pTJXlfhuoBS5ycuIQ3ewBfY0R/XHM3TRDEaDHQJHxouUCpCyijZmpdljTU45lFetIowaKtAi7GBog==} + /@mdit-vue/plugin-frontmatter/0.12.0: + resolution: {integrity: sha512-26Y3JktjGgNoCVH7NLqi5RcdAauAqxepTt2qXueRcRHtGpiRQV2/M1FveIhCOTCtHSuG5bBOHUxGaV6vRK3Vbw==} dependencies: - '@mdit-vue/types': 0.11.0 + '@mdit-vue/types': 0.12.0 '@types/markdown-it': 12.2.3 gray-matter: 4.0.3 markdown-it: 13.0.1 dev: true - /@mdit-vue/plugin-headers/0.11.2: - resolution: {integrity: sha512-hH2zm4m+2tWe7dya/nxbbpB95pa9RjwYxl++kyZuRrqyhNTtsi2HWojX02peQ1nQMKKIWPDHtpeAHGP7dOLKFw==} + /@mdit-vue/plugin-headers/0.12.0: + resolution: {integrity: sha512-7qR63J2uc/rXbjHT77WoYBm9imwzx1tVESmRK+Uth6kqFvSWAXAFPcm4PBatGEE8TgzhklPs5BTcQtQhmmsyaw==} dependencies: - '@mdit-vue/shared': 0.11.2 - '@mdit-vue/types': 0.11.0 + '@mdit-vue/shared': 0.12.0 + '@mdit-vue/types': 0.12.0 '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit-vue/plugin-sfc/0.11.1: - resolution: {integrity: sha512-3AjQXqExzT9FWGNOeTBqK1pbt1UA5anrZvjo7OO2PJ3lrfZd0rbjionFkmW/VW1912laHUraIP6n74mUNqPuWw==} + /@mdit-vue/plugin-sfc/0.12.0: + resolution: {integrity: sha512-mH+rHsERzDxGucAQJILspRiD723AIWMmtMhp7lDKdkCIbIhYfupFv/CkSeX+LAx5UY5greWvUTPGYVKn4gw/5Q==} dependencies: - '@mdit-vue/types': 0.11.0 + '@mdit-vue/types': 0.12.0 '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit-vue/plugin-title/0.11.2: - resolution: {integrity: sha512-R91WCN16CePWRT2bSXaDJGXvj0MuaCz4m2GbYqUbQxd+dqf18uuGPdbhr1rwhIqCvy7GD/g7hSgOFi3DNDAIzA==} + /@mdit-vue/plugin-title/0.12.0: + resolution: {integrity: sha512-XrQcior1EmPgsDG88KsoF4LUSQw/RS1Nyfn5xNWGiurO70a2hml4kCe0XzT4sLKUAPG0HNbIY6b92ezNezqWTg==} dependencies: - '@mdit-vue/shared': 0.11.2 - '@mdit-vue/types': 0.11.0 + '@mdit-vue/shared': 0.12.0 + '@mdit-vue/types': 0.12.0 '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit-vue/plugin-toc/0.11.2: - resolution: {integrity: sha512-0OcGG4TnYIZJ6SLZtk24Nj0oP2vcLn0FyMTao/nB/2Z17/fP3whoo6dVV+0G4Oi8HZ+MMDi661lvS2b4b/glYA==} + /@mdit-vue/plugin-toc/0.12.0: + resolution: {integrity: sha512-tT985CqvLp17DFWHrSvmmJbh7qcy0Rl0dBbYN//Fn952a04dbr1mb2LqW0B1oStSAQj2q24HpK4ZPgYOt7Z1Jg==} dependencies: - '@mdit-vue/shared': 0.11.2 - '@mdit-vue/types': 0.11.0 + '@mdit-vue/shared': 0.12.0 + '@mdit-vue/types': 0.12.0 '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit-vue/shared/0.11.2: - resolution: {integrity: sha512-Z/GS/v9DURZE13Hv41meKzdnprMwenVJoM3t82OE5HIGvtE6QovsZ+mMF/rMvLgaLLMDjT3EwvrrBmemWkHYTQ==} + /@mdit-vue/shared/0.12.0: + resolution: {integrity: sha512-E+sGSubhvnp+Gmb2hJXFDxdLwwQD1H52EVbA4yrxxI5q/cwtnPIN2eJU3zlZB9KcvzXYDFFwt/x2mfhK8RZKBg==} dependencies: - '@mdit-vue/types': 0.11.0 + '@mdit-vue/types': 0.12.0 '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit-vue/types/0.11.0: - resolution: {integrity: sha512-ygCGP7vFpqS02hpZwEe1uz8cfImWX06+zRs08J+tCZRKb6k+easIaIHFtY9ZSxt7j9L/gAPLDo/5RmOT6z0DPQ==} + /@mdit-vue/types/0.12.0: + resolution: {integrity: sha512-mrC4y8n88BYvgcgzq9bvTlDgFyi2zuvzmPilRvRc3Uz1iIvq8mDhxJ0rHKFUNzPEScpDvJdIujqiDrulMqiudA==} dev: true - /@mdit/plugin-align/0.2.3: - resolution: {integrity: sha512-TR4bR8qIg7tYSa62XspVzJKfUCCBJBiwTIAfKWtmeQALtDBClCZa26bL2EJnmdY5EdQVzU9sTHXWcR/p3AnVaw==} + /@mdit/plugin-align/0.3.0: + resolution: {integrity: sha512-t5SY5n93Et8MJRbEmlcREpPNLy/A7j0U13mXiuADtgvkMIWGXiO3PLyPPLfov9vWhh1tcDcNQ1+XY3hw71LwzQ==} engines: {node: '>= 14'} dependencies: - '@mdit/plugin-container': 0.2.3 + '@mdit/plugin-container': 0.3.0 '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-attrs/0.2.3: - resolution: {integrity: sha512-iTqwXOAscDXL20Lt4do3wI6+MQz/iqvSqETpR57M20yl2L/rM02RdVex5BWbxdhqFtDylh+/qtI4X2H6JFv/OQ==} + /@mdit/plugin-attrs/0.3.0: + resolution: {integrity: sha512-u8TrEmoZsCmtPA8Q94CXEBAU8VO8xEaX7JJ20SXcv5C8u4h5S/LwnqBXckBH9B8Qz0j8JS7XeKxfm6X+lmwMxg==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-container/0.2.3: - resolution: {integrity: sha512-psgaYyBX6Pq56R5S+NOIWhk8nz73LBaoputKq2NjQadIUgYlN7CmwOJeUjyg4ZK0wwBg1HzFFD5JaJ+C2jVssA==} + /@mdit/plugin-container/0.3.0: + resolution: {integrity: sha512-mNdw5H8VsifwtRCEvuyIa6kTDP1a3CHe7PhICzmK51/6yObN6PRWWwEDuG3vJOu1pIRltcsgMKMwEC8BWT2S0A==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-figure/0.2.3: - resolution: {integrity: sha512-d1KMMkQq9+0SxVMssnm28KDm1JVxozA8lh9fecKRlMnvN7B7NCnLbQZEe/l8Tj2yesOEgzSGL98+gfu/wdJimA==} + /@mdit/plugin-figure/0.3.0: + resolution: {integrity: sha512-657sxb+qjZ5ff5YXEOuPqobSFcXuLNS7pWFA9oZxK8Fbo8FqS/sAKuUV2axo2SBR9pydLNP/bPvu2YbvYdQkNA==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-footnote/0.2.3: - resolution: {integrity: sha512-LiSxbIu5PJTEj+qUcULQViLvyLyDjmnyM/iRdN4Y2biZ2Is/iVsHfhrrOFoqfTIRUqMwZwvbNJdyFPNheTCQfg==} + /@mdit/plugin-footnote/0.3.0: + resolution: {integrity: sha512-2qfSklSJplsP4sct02cdMcBSVyLAHIhR1OMxhEnS0WsUMtX68r2G7buBtfVbYRT68lCygkZFAD4nymdslEdDRA==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-img-lazyload/0.2.3: - resolution: {integrity: sha512-LQJ+mEDiRVyyUYIv4V5NXb3H8Mxp58OLEGJAyM5GV30ZnlsNQV/eyqLvrkaI/zzr0AULaI4RnwtZrUthsxmQZA==} + /@mdit/plugin-img-lazyload/0.3.0: + resolution: {integrity: sha512-KytI59hWWfiynlt8meFBEGcJO0LrdUbj2Uicq7E1NycTIipgxAKIPU0pxc/eY+gdJhp+W0lpl+orRG0eoVLX+A==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-img-mark/0.2.3: - resolution: {integrity: sha512-bQyCeF1DH06MTb+bpjja5As/mkDMShoEWaZ2inc9knphkLA3EHYuHo+DU72RlhXvYv9AaUmlFl870Wu5OeNvZw==} + /@mdit/plugin-img-mark/0.3.0: + resolution: {integrity: sha512-dto+KOvhai6piINS3052+GUk6AKvxe3bSU6I1dFbYKRswIDZcf8XIMQZVYiBN+2tLKMQzzwcu+irVuWHkS6LYQ==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-img-size/0.2.3: - resolution: {integrity: sha512-oIBWHMIqlMRp4ns/AQC9DwluV2x/aG+vnu1QhIBaUeuLcwZKp4IdmdDDMTqzASpvMpwqe+wRt4aVnyOmOzRF+w==} + /@mdit/plugin-img-size/0.3.0: + resolution: {integrity: sha512-cjj9hGJTiwNwAmuQPSRaQZNaguYBExHZREm1NboWI8zMCTvMXc1zZnTHb96WmD1n2K2c9L2pLkAuqPJu5Z8ZpA==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-include/0.2.3: - resolution: {integrity: sha512-ZCNKi5w+FYkwXXoaFyRqfohBz1uxkwCOWjuF8iHtI8PCXJrquoQz4ynXpLCtMXkg2ohgrcHcQriTOwoGM7xusA==} + /@mdit/plugin-include/0.3.0: + resolution: {integrity: sha512-rDH+4fqT3bv7+Nf5OT6LOvwn545ox5eE1eGHkZWty/XINbKmNP6VSdbgdieqAgJA4nlLCs4yscFk2vuzT8dqrQ==} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 upath: 2.0.1 dev: true - /@mdit/plugin-katex/0.2.3: - resolution: {integrity: sha512-BBeLtivXoGsxHLXqM6h0G661E3amnFBqGX3OuUO3pgVL/IU+yVkn1tFu6D0eFZkyN4juHHrqa1RP2MLQSlziug==} + /@mdit/plugin-katex/0.3.0: + resolution: {integrity: sha512-Uol7ZF2Yc4fBgQOwsy6cQQFkoIWXqV8o7Wf+I9ZJHYosbKZXFrfLkfDkWISSb+TzSTBCrRkrQtt6zi+4+nj9sw==} engines: {node: '>= 14'} dependencies: - '@mdit/plugin-tex': 0.2.3 + '@mdit/plugin-tex': 0.3.0 '@types/katex': 0.16.0 '@types/markdown-it': 12.2.3 katex: 0.16.4 markdown-it: 13.0.1 dev: true - /@mdit/plugin-mark/0.2.3: - resolution: {integrity: sha512-ppGqi3hCV0yeswAK8K4mmTXrzLU/skBjzDQx8q02Ixt7ppE+T8Sh6A9Pir7pPDqhDTE5MHKWxl//KlUfyPQPMw==} + /@mdit/plugin-mark/0.3.0: + resolution: {integrity: sha512-LRCjS/q8ryg/yWnKCGIKWVxCRu36WBfUGDlCuw+cb59ptkbF24Q6Khs8pnZZGq6q+XSFHmYUCCHqp2q79XAvyA==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-mathjax/0.2.3: - resolution: {integrity: sha512-8P5SqRQuyEQ2JBzIGG+Cl93eZU0rx+i1asELRDnz7t1NCTyIkyLCA57utZx5kC3UcuBo7Nog4N2L04zKup2AxQ==} + /@mdit/plugin-mathjax/0.3.0: + resolution: {integrity: sha512-9lvYnVd0kllsysikRr4f+OMS9zjM57QgEIB7e+dSDtYGMQISNxiLQvYap/pMMtY+zZQ51I7heGCjZ2OXmWEtbg==} engines: {node: '>= 14'} dependencies: - '@mdit/plugin-tex': 0.2.3 + '@mdit/plugin-tex': 0.3.0 '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 mathjax-full: 3.2.2 upath: 2.0.1 dev: true - /@mdit/plugin-stylize/0.2.3: - resolution: {integrity: sha512-EeRLwmEDwxB7NaF91OAqIJ5uUKHoPyZie4zFLbA3gKwqVXa6OC1XG1k3S8w9GuRnep/K7+e/5gPGFM68tI7v8g==} + /@mdit/plugin-stylize/0.3.0: + resolution: {integrity: sha512-WT+ts6/Xd+K3ASlHDWa4ZHqDx4KgRsuHgLhmyvyAGY9ApNP1Q0ROY5Ik4bn92WVRU3WEfK8ICOEOnoEPEP2NJA==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-sub/0.2.3: - resolution: {integrity: sha512-eWCOxASIU/Y1efzhJkb1y0XWa0yGVdtYm4SKfUd73rF4dNEYIYJiNKkQfefrGtMuQdeM7iBqBZfYtcq/nipkzg==} + /@mdit/plugin-sub/0.3.0: + resolution: {integrity: sha512-T4fYZqIJ2ZJOQ4WoURU813XL7Y6prs5jYaxLWteOqF9JkTcqNQ22hJcdGe5domIG/dH79IZqVHkJ7okoFOt/Xg==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-sup/0.2.3: - resolution: {integrity: sha512-gqOOQo6lE2e8SFHpXhKCKiFGoVIO1JUDA97Ol5iIFZtXJ4lbObWKxtYa63KH+kOVwDUUGSojQ6s8+oGMxmtIDA==} + /@mdit/plugin-sup/0.3.0: + resolution: {integrity: sha512-K6L1/WK94XwFG+Oo54GVM9m+Y0cjinoiVtWjT0OIswCQWDuuXG7H4JH2uxBxQJb8MWNsnnQRUFnaG1RPiRP94Q==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-tab/0.2.3: - resolution: {integrity: sha512-J0LkcQ2Kb2fm+8Gnd1Ke8rKfJXMQPqwx3ZDa2AtLCcBEf5hWAKbLoc/cWjDVXiHjsdOklIs5AtCyNUkR5YbyOA==} + /@mdit/plugin-tab/0.3.0: + resolution: {integrity: sha512-mHnj+AZRem7Jilc1Auu7wL5Uo/S32Slp1WU3Of3RJn0LiQnEpZHKr/kpQutEWV+kZo/rIcTIxdCYWXBZqj38ng==} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-tasklist/0.2.3: - resolution: {integrity: sha512-szYn7pyaozAPhilrNeC5PNLR+Rm9qlPvRQsxMK88Sa4seSdDhQnPkDb+407QYtYdYpyrn0ZKCvnmuXc9CLlhmQ==} + /@mdit/plugin-tasklist/0.3.0: + resolution: {integrity: sha512-/nekYc2zSKxGFbTR2o6dXyqoUfQBrf9PX0O81ZOGIzaMI+t6y9q3tJwnmbwLD/QE1MeW6kaR4byCcD3rc1SyAQ==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-tex/0.2.3: - resolution: {integrity: sha512-sD7dILLqwdPA3B89W5Ezj2vMjrYZKBFICLvPmp49crdAW51tcLUtjKK5nF86fUY7VULlsDG9h5+lQV9wc/HNYA==} + /@mdit/plugin-tex/0.3.0: + resolution: {integrity: sha512-GXAOOBlk2me/noWOCbZeoqMsCcsIeNob+LhLYfk8q4w3rHJM9gdUI5JL05ClbvO7eNSSjQVZZ1tHfyjK08RvSg==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mdit/plugin-uml/0.2.3: - resolution: {integrity: sha512-bLo1R4f6xaXtToLLP4+7+x/i9p815NnuS+l63RkhE2juEagQYKaB2Ytw/91K0/sprWrrvOL3ESRlgFK14MAmHQ==} + /@mdit/plugin-uml/0.3.0: + resolution: {integrity: sha512-QS00olhRy3Ct5qwjFYBk6YtCZK5oLM8K4SyPND7LCrqiV3PiAtH8jXN9BnDmKQN+EhXXzFe3NlxRjNLvGu/JUw==} engines: {node: '>= 14'} dependencies: '@types/markdown-it': 12.2.3 markdown-it: 13.0.1 dev: true - /@mermaid-js/mermaid-mindmap/9.3.0: - resolution: {integrity: sha512-IhtYSVBBRYviH1Ehu8gk69pMDF8DSRqXBRDMWrEfHoaMruHeaP2DXA3PBnuwsMaCdPQhlUUcy/7DBLAEIXvCAw==} - dependencies: - '@braintree/sanitize-url': 6.0.2 - cytoscape: 3.23.0 - cytoscape-cose-bilkent: 4.1.0_cytoscape@3.23.0 - cytoscape-fcose: 2.2.0_cytoscape@3.23.0 - d3: 7.8.2 - khroma: 2.0.0 - non-layered-tidy-tree-layout: 2.0.2 - dev: true - /@nodelib/fs.scandir/2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1692,7 +1762,7 @@ packages: fastq: 1.15.0 dev: true - /@rollup/plugin-babel/5.3.1_d8e457a9eec5694be0a6185ede2794cb: + /@rollup/plugin-babel/5.3.1_4tnfxcmsyr7y5qv3uwkivwqysm: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -1703,7 +1773,7 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.21.0 '@babel/helper-module-imports': 7.18.6 '@rollup/pluginutils': 3.1.0_rollup@2.79.1 rollup: 2.79.1 @@ -1773,9 +1843,10 @@ packages: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: true - /@types/fs-extra/9.0.13: - resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} + /@types/fs-extra/11.0.1: + resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==} dependencies: + '@types/jsonfile': 6.1.1 '@types/node': 18.13.0 dev: true @@ -1783,6 +1854,20 @@ packages: resolution: {integrity: sha512-FdLBT93h3kcZ586Aee66HPCVJ6qvxVjBlDWNmxSGSbCZe9hTsjRKdSsl4y1T+3zfujxo9auykQMnFsfyHWD7wg==} dev: true + /@types/json-schema/7.0.11: + resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + dev: true + + /@types/json5/0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true + + /@types/jsonfile/6.1.1: + resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} + dependencies: + '@types/node': 18.13.0 + dev: true + /@types/katex/0.16.0: resolution: {integrity: sha512-hz+S3nV6Mym5xPbT9fnO8dDhBFQguMYpY0Ipxv06JMi1ORgnEM4M1ymWDUhUNer3ElLmT583opRo4RzxKmh9jw==} dev: true @@ -1833,7 +1918,11 @@ packages: /@types/sax/1.2.4: resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==} dependencies: - '@types/node': 17.0.45 + '@types/node': 18.13.0 + dev: true + + /@types/semver/7.3.13: + resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} dev: true /@types/trusted-types/2.0.2: @@ -1844,14 +1933,144 @@ packages: resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==} dev: true - /@vitejs/plugin-vue/4.0.0_vite@4.0.4+vue@3.2.47: + /@typescript-eslint/eslint-plugin/5.54.0_rnadeopnlkrqw7c6bwgkipvmrq: + resolution: {integrity: sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim + '@typescript-eslint/scope-manager': 5.54.0 + '@typescript-eslint/type-utils': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim + '@typescript-eslint/utils': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim + debug: 4.3.4 + eslint: 8.35.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.4 + natural-compare-lite: 1.4.0 + regexpp: 3.2.0 + semver: 7.3.8 + tsutils: 3.21.0_typescript@3.9.10 + typescript: 3.9.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser/5.54.0_gv45cv5f5y7bgncpx37yd3rwim: + resolution: {integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.54.0 + '@typescript-eslint/types': 5.54.0 + '@typescript-eslint/typescript-estree': 5.54.0_typescript@3.9.10 + debug: 4.3.4 + eslint: 8.35.0 + typescript: 3.9.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager/5.54.0: + resolution: {integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.54.0 + '@typescript-eslint/visitor-keys': 5.54.0 + dev: true + + /@typescript-eslint/type-utils/5.54.0_gv45cv5f5y7bgncpx37yd3rwim: + resolution: {integrity: sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 5.54.0_typescript@3.9.10 + '@typescript-eslint/utils': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim + debug: 4.3.4 + eslint: 8.35.0 + tsutils: 3.21.0_typescript@3.9.10 + typescript: 3.9.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types/5.54.0: + resolution: {integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree/5.54.0_typescript@3.9.10: + resolution: {integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.54.0 + '@typescript-eslint/visitor-keys': 5.54.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0_typescript@3.9.10 + typescript: 3.9.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.54.0_gv45cv5f5y7bgncpx37yd3rwim: + resolution: {integrity: sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@types/semver': 7.3.13 + '@typescript-eslint/scope-manager': 5.54.0 + '@typescript-eslint/types': 5.54.0 + '@typescript-eslint/typescript-estree': 5.54.0_typescript@3.9.10 + eslint: 8.35.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@8.35.0 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys/5.54.0: + resolution: {integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.54.0 + eslint-visitor-keys: 3.3.0 + dev: true + + /@vitejs/plugin-vue/4.0.0_vite@4.1.4+vue@3.2.47: resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: 4.0.4 + vite: 4.1.4 vue: 3.2.47 dev: true @@ -1950,20 +2169,20 @@ packages: resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==} dev: true - /@vuepress/bundler-vite/2.0.0-beta.60: - resolution: {integrity: sha512-nf+UAKNlAEZXZqu2Ztvr8Hg/5CtevWxvQGfYKV4lhw8UmoDjKKHoHPpPhF1QTUbnZ8W+jPLzIVz+hjunzsxl/A==} + /@vuepress/bundler-vite/2.0.0-beta.61: + resolution: {integrity: sha512-J9/DGfsqr9rGJT+0osL9uL+jrrGHeAsWuZoCCbQIDbe0rEO2whvou51PJpwko3R0vvCTWsolh6rXYeb0N0+yFg==} dependencies: - '@vitejs/plugin-vue': 4.0.0_vite@4.0.4+vue@3.2.47 - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vitejs/plugin-vue': 4.0.0_vite@4.1.4+vue@3.2.47 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 autoprefixer: 10.4.13_postcss@8.4.21 connect-history-api-fallback: 2.0.0 postcss: 8.4.21 postcss-load-config: 4.0.1_postcss@8.4.21 - rollup: 3.14.0 - vite: 4.0.4 + rollup: 3.18.0 + vite: 4.1.4 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 transitivePeerDependencies: @@ -1977,13 +2196,13 @@ packages: - ts-node dev: true - /@vuepress/cli/2.0.0-beta.60: - resolution: {integrity: sha512-ibC6ezsn1m+r3PB382ZZfmwBFlkR/9LVk5u2cUBmhBj4t+W2XPgWkKTTmG81ny7lnUJweloQc9fa1ww77se2Ug==} + /@vuepress/cli/2.0.0-beta.61: + resolution: {integrity: sha512-0CWc82c75987mVZwBOGBaCDke74NwlS6L3n1ybWrrqaFeueZSonwdm+qvaNvM/AJC10chqOJtpO/O3P+/YkBHQ==} hasBin: true dependencies: - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 cac: 6.7.14 chokidar: 3.5.3 envinfo: 7.8.1 @@ -1992,56 +2211,56 @@ packages: - supports-color dev: true - /@vuepress/client/2.0.0-beta.60: - resolution: {integrity: sha512-WU5VGeDp41A2dVXqp18YBggflIjTq68mA+s5TCz93wk+7elAmPAkWKcobQBYQgvsuwHyg9nWulZAfMN6OEygKQ==} + /@vuepress/client/2.0.0-beta.61: + resolution: {integrity: sha512-C5QbdQkPsurEsKUkLclVucUAKMzBph9kHMUvfKHJqBaAsiXKYVLa61AICTJeyDkhTYF0faOjmpqmaElfMt1S9w==} dependencies: '@vue/devtools-api': 6.5.0 - '@vuepress/shared': 2.0.0-beta.60 + '@vuepress/shared': 2.0.0-beta.61 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 dev: true - /@vuepress/core/2.0.0-beta.60: - resolution: {integrity: sha512-HkUkqBnBI7GMVZGxdzV4C/iyFwPo215sVLYvZVEWpQIaLk/47WkK0sHtz/1i00ujwJC3uGOH1+f0IHkxzqjUmg==} + /@vuepress/core/2.0.0-beta.61: + resolution: {integrity: sha512-jPr60d/uadgBmEQhXCRLNOm2M4Ym65lvZhGf/wyZCo14kpacp2YoO7RR8bzp/NEpWe7ndr/U8O/VDjFYTsz80g==} dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/markdown': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/markdown': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 vue: 3.2.47 transitivePeerDependencies: - supports-color dev: true - /@vuepress/markdown/2.0.0-beta.60: - resolution: {integrity: sha512-97AT4aZr1k1VrJZoUvzbrX6nU/TwxlFpLNi8KNtWK3TMZT6+hAU0aCg6TwuwirShvey8mr9GaMNSssAdpSK4mg==} + /@vuepress/markdown/2.0.0-beta.61: + resolution: {integrity: sha512-vzj933XxsfE9B+1kdMXncYtYU7TGTLjWP+qeikVsy5imq2BXa/n3OFVGyGkkdOYmu05hkm82+07dOvtGA+iMBQ==} dependencies: - '@mdit-vue/plugin-component': 0.11.2 - '@mdit-vue/plugin-frontmatter': 0.11.1 - '@mdit-vue/plugin-headers': 0.11.2 - '@mdit-vue/plugin-sfc': 0.11.1 - '@mdit-vue/plugin-title': 0.11.2 - '@mdit-vue/plugin-toc': 0.11.2 - '@mdit-vue/shared': 0.11.2 - '@mdit-vue/types': 0.11.0 + '@mdit-vue/plugin-component': 0.12.0 + '@mdit-vue/plugin-frontmatter': 0.12.0 + '@mdit-vue/plugin-headers': 0.12.0 + '@mdit-vue/plugin-sfc': 0.12.0 + '@mdit-vue/plugin-title': 0.12.0 + '@mdit-vue/plugin-toc': 0.12.0 + '@mdit-vue/shared': 0.12.0 + '@mdit-vue/types': 0.12.0 '@types/markdown-it': 12.2.3 '@types/markdown-it-emoji': 2.0.2 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 markdown-it: 13.0.1 - markdown-it-anchor: 8.6.6_203ea4fed94a963ea5da6bb0985d1ff7 + markdown-it-anchor: 8.6.7_ea7kj7wzjkld5jo2noyjqxi764 markdown-it-emoji: 2.0.2 mdurl: 1.0.1 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-active-header-links/2.0.0-beta.60: - resolution: {integrity: sha512-L+KijW7FvoDWMTd6wiIZhMA/uZYgMhiukL6IaVWtQ0COyWGIjaZUlX+mHd1munSzz4aWBMbck7no82bPswCh0g==} + /@vuepress/plugin-active-header-links/2.0.0-beta.61: + resolution: {integrity: sha512-+bbzb4YqnuTOANvSmJq8hbp60Tl3jLMiaZdkHKxKK9lDODGfTB8uAlH+KvuvxxuLm+Za186r+2PtBwJby773fA==} dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 ts-debounce: 4.0.0 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 @@ -2049,142 +2268,142 @@ packages: - supports-color dev: true - /@vuepress/plugin-back-to-top/2.0.0-beta.60: - resolution: {integrity: sha512-vpVTA6EwWjjYyl6Op5J16RV6rEvwUYkLnjYhJ2qWroDb8U2x32HGWFJZQFIyatGO+oU6UBVYow90j2+Ery2g6g==} + /@vuepress/plugin-back-to-top/2.0.0-beta.61: + resolution: {integrity: sha512-2KX83rdc00FSs38o8/P2Hp0ifKVtRbO+4kXW5ilzY27v0UMY8H//KxmoE/+PZDS9iyeXF1O/YUm3VtoMN5Y/9g==} dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 ts-debounce: 4.0.0 vue: 3.2.47 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-container/2.0.0-beta.60: - resolution: {integrity: sha512-yQBAm7sFRGMvCz8Ju2qFG0iLQs/XvWd11UAsywSdvps3A0nZuANSb68QTYJPN3JJfZ5d0LCxlhJ4rbBWT49+wQ==} + /@vuepress/plugin-container/2.0.0-beta.61: + resolution: {integrity: sha512-XVIhMpTSv0F8tsmCKFHzFtsJzD2SeiKX60jHaEGCym+shNvr9euECWY7ygEB5Ob6oQUIDZNS1dDb1RcYsksZ8A==} dependencies: '@types/markdown-it': 12.2.3 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/markdown': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/markdown': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 markdown-it: 13.0.1 markdown-it-container: 3.0.0 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-external-link-icon/2.0.0-beta.60: - resolution: {integrity: sha512-We4YmS4G7sWoOec/FKYhTM86qRCMBbDThcxOiPm6sWHrhTdxk3bFgJq/DfqJU/ply1ta72AWep0rEY6fj6JJ2A==} + /@vuepress/plugin-external-link-icon/2.0.0-beta.61: + resolution: {integrity: sha512-Jyp/QdqIvybfocD2K8otKIeHrKMeOamt74tlstsZxrtveKhWE3Js1/n2MP/bJlGkcHrAb6lQQr/JFhpT5jtHVg==} dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/markdown': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/markdown': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 vue: 3.2.47 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-git/2.0.0-beta.60: - resolution: {integrity: sha512-Yu+D8gItxD8BFueV5fQd7AxIgjcxyDY1AFCTmPsP9VDMJ0AuJuaPTLWOf5o0uKzWd5z1mDw0ZwWFh8j3FyHv+A==} + /@vuepress/plugin-git/2.0.0-beta.61: + resolution: {integrity: sha512-ozoxZ+x57yGiHDs5tXJvbyoZTiYpfb7QQaS5mgxn0+XZqfg7/cZnT7DmJtxVqk+VFmz73WHgN+4pGRjkuTOLqQ==} dependencies: - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - execa: 6.1.0 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + execa: 7.0.0 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-medium-zoom/2.0.0-beta.60: - resolution: {integrity: sha512-KiJui/sTIHa321jJ/dc11ysyqTMj4Sz9tWoTSnwBJ4nebaO/0OFGQcFajk2+1ELs4poUh/w0THxc+NskR+bf+g==} + /@vuepress/plugin-medium-zoom/2.0.0-beta.61: + resolution: {integrity: sha512-mFY2vHXeqC8dizFVlFO7HIzirb79Z8sudKWPVfZmq0Qmlttyhxlns8GjrsPQl1mnz2NlYUY1ztUasikPwsYjAw==} dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 medium-zoom: 1.0.8 vue: 3.2.47 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-nprogress/2.0.0-beta.60: - resolution: {integrity: sha512-zRdJP39qFO8q9TAwlCS4tLOd2rLGtkKqkPTsfhjtWwDqSbtTHy0GqVBL8KJUy3H0+qSiyvtC647yLNRbJ9LOlw==} + /@vuepress/plugin-nprogress/2.0.0-beta.61: + resolution: {integrity: sha512-d36NEy8hkZaAuqMZec9VTEjozPkj9Wvimyx+AgJYpYN8JDBrWB58r9Gu9xHf8/PVeEnKayggD2xJYpGKtQ2lrw==} dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-palette/2.0.0-beta.60: - resolution: {integrity: sha512-KPIQCLUEIsgsdxINR6mYJRhHmWCo0850QEvy9+ikdv+ds1z6wJ5xwq/xWy/pRJ6lXdgHQrtuVkroWl+IdppcRw==} + /@vuepress/plugin-palette/2.0.0-beta.61: + resolution: {integrity: sha512-mQE/2dxwOZfkc7wwkwR6byaeMJYTqQV7WmfQ4YQ3zAOr4nDP8Bx/zZVRyV3NjAcMwuif/CURpAYJo+WkFM+fpQ==} dependencies: - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 chokidar: 3.5.3 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-prismjs/2.0.0-beta.60: - resolution: {integrity: sha512-yWRWAsUX6iO7uUN67yyy20x3H1clQZ519rHh2dvs6wMyXsO0E3vlNB8jrveOdr+0lfoUll58t2AsxpvzTObY0A==} + /@vuepress/plugin-prismjs/2.0.0-beta.61: + resolution: {integrity: sha512-B6TRmttJuPs1OMJXE2Stul7zhMUKCPy2YSXEmVWwlJ90jWti85o5nhTT9/OhxBVn3EZ89b+YroPDbB/g1uUc1w==} dependencies: - '@vuepress/core': 2.0.0-beta.60 + '@vuepress/core': 2.0.0-beta.61 prismjs: 1.29.0 transitivePeerDependencies: - supports-color dev: true - /@vuepress/plugin-theme-data/2.0.0-beta.60: - resolution: {integrity: sha512-3b34sXEAzShvUzeEMA/0JE4VrLxoMqGJOGMl0I9m0DKg2apgjRG6nYYq6gUnJW0gcUVK+tOOOHsMT6mTMs3xdA==} + /@vuepress/plugin-theme-data/2.0.0-beta.61: + resolution: {integrity: sha512-drPLGbaXqXnHsuFHn6FolbqdRIxJzla1+10b3cKnsslatRbSPjKWos4Eri3xzgzEIC5TotPwTeT25gDRMpW8Sw==} dependencies: '@vue/devtools-api': 6.5.0 - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 vue: 3.2.47 transitivePeerDependencies: - supports-color dev: true - /@vuepress/shared/2.0.0-beta.60: - resolution: {integrity: sha512-bwFksEtSQpbyAGJZkvRK9Z2zGmS144nv759vOzbRUZPPlGffeauzrPw9w7wxqp3gTJvIE/4Ufqt0AZTuSP/F/g==} + /@vuepress/shared/2.0.0-beta.61: + resolution: {integrity: sha512-NhOQ1FDr5lDSu5IinNlNNzrF+jGOZ+bMFUyAlCxlTvK9oY6aRBCNwV8dWme+yoh3/zviKHGu62Xp7J2hKAHNZA==} dependencies: - '@mdit-vue/types': 0.11.0 + '@mdit-vue/types': 0.12.0 '@vue/shared': 3.2.47 dev: true - /@vuepress/theme-default/2.0.0-beta.60: - resolution: {integrity: sha512-j9ybX31HWlmITnuGFt/IxQOt8ttBDI8ebzh4uKs70Yv8z4m1pMrlPNY2Qs2ubLpJIuCQNtMY2cfQKgaUiDYAuQ==} + /@vuepress/theme-default/2.0.0-beta.61: + resolution: {integrity: sha512-ajjxaGqrSy5LXf+7sslHV1fbUzggMYjITcXxBYa3gT4zVu1tsytAAcmtYxnQKblL1Eo2Wo7inujl/NUwaWDjDQ==} peerDependencies: sass-loader: ^13.2.0 peerDependenciesMeta: sass-loader: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/plugin-active-header-links': 2.0.0-beta.60 - '@vuepress/plugin-back-to-top': 2.0.0-beta.60 - '@vuepress/plugin-container': 2.0.0-beta.60 - '@vuepress/plugin-external-link-icon': 2.0.0-beta.60 - '@vuepress/plugin-git': 2.0.0-beta.60 - '@vuepress/plugin-medium-zoom': 2.0.0-beta.60 - '@vuepress/plugin-nprogress': 2.0.0-beta.60 - '@vuepress/plugin-palette': 2.0.0-beta.60 - '@vuepress/plugin-prismjs': 2.0.0-beta.60 - '@vuepress/plugin-theme-data': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 - sass: 1.58.0 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/plugin-active-header-links': 2.0.0-beta.61 + '@vuepress/plugin-back-to-top': 2.0.0-beta.61 + '@vuepress/plugin-container': 2.0.0-beta.61 + '@vuepress/plugin-external-link-icon': 2.0.0-beta.61 + '@vuepress/plugin-git': 2.0.0-beta.61 + '@vuepress/plugin-medium-zoom': 2.0.0-beta.61 + '@vuepress/plugin-nprogress': 2.0.0-beta.61 + '@vuepress/plugin-palette': 2.0.0-beta.61 + '@vuepress/plugin-prismjs': 2.0.0-beta.61 + '@vuepress/plugin-theme-data': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 + sass: 1.58.3 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 transitivePeerDependencies: @@ -2192,13 +2411,13 @@ packages: - supports-color dev: true - /@vuepress/utils/2.0.0-beta.60: - resolution: {integrity: sha512-R5m5/AtKWAnlH+Su2yxoHQNp2JdJZ7gHV5531RbFySq9FTlKHtvE5RFceeppc0/UpzPE6KggRdaRqyjc77vg4g==} + /@vuepress/utils/2.0.0-beta.61: + resolution: {integrity: sha512-W7g6xjrdyOW5E1V1ouyTm5d4+kgSd4KcM80D7K0NNScrhLIW6gpOggVVOVyTH3q2K1GQhzPlUcUe04ZNSo0ilQ==} dependencies: '@types/debug': 4.1.7 - '@types/fs-extra': 9.0.13 + '@types/fs-extra': 11.0.1 '@types/hash-sum': 1.0.0 - '@vuepress/shared': 2.0.0-beta.60 + '@vuepress/shared': 2.0.0-beta.61 debug: 4.3.4 fs-extra: 11.1.0 globby: 13.1.3 @@ -2210,24 +2429,24 @@ packages: - supports-color dev: true - /@vueuse/core/9.12.0_vue@3.2.47: - resolution: {integrity: sha512-h/Di8Bvf6xRcvS/PvUVheiMYYz3U0tH3X25YxONSaAUBa841ayMwxkuzx/DGUMCW/wHWzD8tRy2zYmOC36r4sg==} + /@vueuse/core/9.13.0_vue@3.2.47: + resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} dependencies: '@types/web-bluetooth': 0.0.16 - '@vueuse/metadata': 9.12.0 - '@vueuse/shared': 9.12.0_vue@3.2.47 + '@vueuse/metadata': 9.13.0 + '@vueuse/shared': 9.13.0_vue@3.2.47 vue-demi: 0.13.11_vue@3.2.47 transitivePeerDependencies: - '@vue/composition-api' - vue dev: true - /@vueuse/metadata/9.12.0: - resolution: {integrity: sha512-9oJ9MM9lFLlmvxXUqsR1wLt1uF7EVbP5iYaHJYqk+G2PbMjY6EXvZeTjbdO89HgoF5cI6z49o2zT/jD9SVoNpQ==} + /@vueuse/metadata/9.13.0: + resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} dev: true - /@vueuse/shared/9.12.0_vue@3.2.47: - resolution: {integrity: sha512-TWuJLACQ0BVithVTRbex4Wf1a1VaRuSpVeyEd4vMUWl54PzlE0ciFUshKCXnlLuD0lxIaLK4Ypj3NXYzZh4+SQ==} + /@vueuse/shared/9.13.0_vue@3.2.47: + resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} dependencies: vue-demi: 0.13.11_vue@3.2.47 transitivePeerDependencies: @@ -2239,7 +2458,7 @@ packages: resolution: {integrity: sha512-hTfh2AbWQCX/oS4Hgr0W9cf79pHYf7X6Km5AcBDAmOL6AI7a5kP9qo9y2mcEzdfn9LK06P5Uuk8HY8vxQbgcrA==} engines: {node: '>=14'} dependencies: - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vueuse/core': 9.13.0_vue@3.2.47 autosize: 5.0.2 marked: 4.2.12 vue: 3.2.47 @@ -2251,12 +2470,29 @@ packages: resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} dev: true + /acorn-jsx/5.3.2_acorn@8.8.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.8.2 + dev: true + /acorn/8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} hasBin: true dev: true + /ajv/6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + /ajv/8.12.0: resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} dependencies: @@ -2266,6 +2502,11 @@ packages: uri-js: 4.4.1 dev: true + /ansi-regex/5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + /ansi-regex/6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} @@ -2307,6 +2548,42 @@ packages: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true + /array-includes/3.1.6: + resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.21.1 + get-intrinsic: 1.2.0 + is-string: 1.0.7 + dev: true + + /array-union/2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /array.prototype.flat/1.3.1: + resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.21.1 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.flatmap/1.3.1: + resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.21.1 + es-shim-unscopables: 1.0.0 + dev: true + /artalk/2.4.4: resolution: {integrity: sha512-8O/FjQM+oFnfsfouuej2qjRNfV9/0JJR2jI9vS7neI8zTa4xqu0PChDIR0CtZG8ze0eOKI0taTlEFhmahJUJIQ==} dependencies: @@ -2360,38 +2637,38 @@ packages: engines: {node: '>= 0.4'} dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.14 - '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12: + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.0: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 core-js-compat: 3.27.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.0: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 transitivePeerDependencies: - supports-color dev: true @@ -2499,6 +2776,12 @@ packages: engines: {node: '>=6'} dev: true + /builtins/5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + dependencies: + semver: 7.3.8 + dev: true + /cac/6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -2511,6 +2794,16 @@ packages: get-intrinsic: 1.2.0 dev: true + /callsites/3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase/5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + /caniuse-lite/1.0.30001450: resolution: {integrity: sha512-qMBmvmQmFXaSxexkjjfMvD5rnDL0+m+dUMZKoDYsGG8iZN29RuYh9eRoMvKsT6uMAWlyUUGDEQGJJYjzCIO9ew==} dev: true @@ -2537,8 +2830,8 @@ packages: engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true - /chart.js/4.2.0: - resolution: {integrity: sha512-wbtcV+QKeH0F7gQZaCJEIpsNriFheacouJQTVIjITi3eQA8bTlIBoknz0+dgV79aeKLNMAX+nDslIVE/nJ3rzA==} + /chart.js/4.2.1: + resolution: {integrity: sha512-6YbpQ0nt3NovAgOzbkSSeeAQu/3za1319dPUQTXn9WcOpywM8rGKxJHrhS8V8xEkAlk8YhEfjbuAPfUyp6jIsw==} engines: {pnpm: ^7.0.0} dependencies: '@kurkle/color': 0.3.2 @@ -2595,6 +2888,14 @@ packages: engines: {node: '>=6'} dev: true + /cliui/6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + dev: true + /clone/1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} @@ -2719,6 +3020,12 @@ packages: engines: {node: '>= 6'} dev: true + /cssesc/3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + /csstype/2.6.21: resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} dev: true @@ -3001,15 +3308,15 @@ packages: d3-zoom: 3.0.0 dev: true - /dagre-d3-es/7.0.6: - resolution: {integrity: sha512-CaaE/nZh205ix+Up4xsnlGmpog5GGm81Upi2+/SBHxwNwrccBb3K51LzjZ1U6hgvOlAEUsVWf1xSTzCyKpJ6+Q==} + /dagre-d3-es/7.0.9: + resolution: {integrity: sha512-rYR4QfVmy+sR44IBDvVtcAmOReGBvRCWDpO2QjYwqgh9yijw6eSHBqaPG/LIOEy7aBsniLvtMW6pg19qJhq60w==} dependencies: d3: 7.8.2 lodash-es: 4.17.21 dev: true - /dashjs/4.5.2: - resolution: {integrity: sha512-WXPk0lPDSaHjiSVoVRh2jQPiMmB1alKUH8hV2CVmaI0vPUeT1wIY7madVE38SthfOmwS9IJViv1RrxrxdGjElg==} + /dashjs/4.6.0: + resolution: {integrity: sha512-0PDoSBM9PXb+Io0pRnw2CmO7aV9W8FC/BqBRNhLxzM3/e5Kfj7BLy0OWkkSB58ULg6Md6r+6jkGOTUhut/35rg==} dependencies: bcp-47-match: 1.0.3 bcp-47-normalize: 1.1.1 @@ -3019,6 +3326,7 @@ packages: html-entities: 1.4.0 imsc: 1.1.3 localforage: 1.10.0 + path-browserify: 1.0.1 ua-parser-js: 1.0.33 dev: true @@ -3026,6 +3334,17 @@ packages: resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} dev: true + /debug/3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + /debug/4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -3038,6 +3357,15 @@ packages: ms: 2.1.2 dev: true + /decamelize/1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /deep-is/0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + /deepmerge/4.3.0: resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} engines: {node: '>=0.10.0'} @@ -3063,6 +3391,10 @@ packages: robust-predicates: 3.0.1 dev: true + /dijkstrajs/1.0.2: + resolution: {integrity: sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg==} + dev: true + /dir-glob/3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} @@ -3070,6 +3402,20 @@ packages: path-type: 4.0.0 dev: true + /doctrine/2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine/3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + /dom-serializer/2.0.0: resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dependencies: @@ -3089,8 +3435,8 @@ packages: domelementtype: 2.3.0 dev: true - /dompurify/2.4.1: - resolution: {integrity: sha512-ewwFzHzrrneRjxzmK6oVz/rZn9VWspGFRDb4/rRtIsM1n36t9AKma/ye8syCpcw+XJ25kOK/hOG7t1j2I2yBqA==} + /dompurify/2.4.3: + resolution: {integrity: sha512-q6QaLcakcRjebxjg8/+NP+h0rPfatOgOzc46Fst9VAA3jF2ApfKBNKMzdP4DYTqtUMXSCd5pRS/8Po/OmoCHZQ==} dev: true /domutils/3.0.1: @@ -3120,6 +3466,18 @@ packages: resolution: {integrity: sha512-8s9aJf3YiokIrR+HOQzNOGmEHFXVUQzXM/JaViVvKdCkNUjS+lEa/uT7xw3nDVG/IgfxiIwUGkwJ6AR1pTpYsQ==} dev: true + /elkjs/0.8.2: + resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==} + dev: true + + /emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /encode-utf8/1.0.3: + resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} + dev: true + /entities/3.0.1: resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} engines: {node: '>=0.12'} @@ -3184,6 +3542,12 @@ packages: has-tostringtag: 1.0.0 dev: true + /es-shim-unscopables/1.0.0: + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + dependencies: + has: 1.0.3 + dev: true + /es-to-primitive/1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} @@ -3237,17 +3601,293 @@ packages: engines: {node: '>=0.8.0'} dev: true + /escape-string-regexp/4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-config-standard/17.0.0_hwjsujmtoc7k47rjh5qfu7woty: + resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==} + peerDependencies: + eslint: ^8.0.1 + eslint-plugin-import: ^2.25.2 + eslint-plugin-n: ^15.0.0 + eslint-plugin-promise: ^6.0.0 + dependencies: + eslint: 8.35.0 + eslint-plugin-import: 2.27.5_ajyizmi44oc3hrc35l6ndh7p4e + eslint-plugin-n: 15.6.1_eslint@8.35.0 + eslint-plugin-promise: 6.1.1_eslint@8.35.0 + dev: true + + /eslint-import-resolver-node/0.3.7: + resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + dependencies: + debug: 3.2.7 + is-core-module: 2.11.0 + resolve: 1.22.1 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils/2.7.4_qynxowrxvm2kj5rbowcxf5maga: + resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim + debug: 3.2.7 + eslint: 8.35.0 + eslint-import-resolver-node: 0.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-es/4.1.0_eslint@8.35.0: + resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} + engines: {node: '>=8.10.0'} + peerDependencies: + eslint: '>=4.19.1' + dependencies: + eslint: 8.35.0 + eslint-utils: 2.1.0 + regexpp: 3.2.0 + dev: true + + /eslint-plugin-import/2.27.5_ajyizmi44oc3hrc35l6ndh7p4e: + resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + array.prototype.flatmap: 1.3.1 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 8.35.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.7.4_qynxowrxvm2kj5rbowcxf5maga + has: 1.0.3 + is-core-module: 2.11.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.1 + semver: 6.3.0 + tsconfig-paths: 3.14.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-n/15.6.1_eslint@8.35.0: + resolution: {integrity: sha512-R9xw9OtCRxxaxaszTQmQAlPgM+RdGjaL1akWuY/Fv9fRAi8Wj4CUKc6iYVG8QNRjRuo8/BqVYIpfqberJUEacA==} + engines: {node: '>=12.22.0'} + peerDependencies: + eslint: '>=7.0.0' + dependencies: + builtins: 5.0.1 + eslint: 8.35.0 + eslint-plugin-es: 4.1.0_eslint@8.35.0 + eslint-utils: 3.0.0_eslint@8.35.0 + ignore: 5.2.4 + is-core-module: 2.11.0 + minimatch: 3.1.2 + resolve: 1.22.1 + semver: 7.3.8 + dev: true + + /eslint-plugin-promise/6.1.1_eslint@8.35.0: + resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.35.0 + dev: true + + /eslint-plugin-vue/9.9.0_eslint@8.35.0: + resolution: {integrity: sha512-YbubS7eK0J7DCf0U2LxvVP7LMfs6rC6UltihIgval3azO3gyDwEGVgsCMe1TmDiEkl6GdMKfRpaME6QxIYtzDQ==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.35.0 + eslint-utils: 3.0.0_eslint@8.35.0 + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.0.11 + semver: 7.3.8 + vue-eslint-parser: 9.1.0_eslint@8.35.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-scope/5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope/7.1.1: + resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-utils/2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils/3.0.0_eslint@8.35.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.35.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys/1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + dev: true + + /eslint-visitor-keys/2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint-visitor-keys/3.3.0: + resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint/8.35.0: + resolution: {integrity: sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint/eslintrc': 2.0.0 + '@eslint/js': 8.35.0 + '@humanwhocodes/config-array': 0.11.8 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0_eslint@8.35.0 + eslint-visitor-keys: 3.3.0 + espree: 9.4.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.20.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.4 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-sdsl: 4.3.0 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + /esm/3.2.25: resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} engines: {node: '>=6'} dev: true + /espree/9.4.1: + resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.8.2 + acorn-jsx: 5.3.2_acorn@8.8.2 + eslint-visitor-keys: 3.3.0 + dev: true + /esprima/4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true dev: true + /esquery/1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse/4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse/4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse/5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + /estree-walker/1.0.1: resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} dev: true @@ -3265,13 +3905,13 @@ packages: resolution: {integrity: sha512-jrxnPsCGqng1UZuEp9DecX/AuSyAszATSjf4oEcRxvfxa1Oux4KkIPKBAAWWnpdwfARtr+Q0o9aPYWjsROD7ug==} dev: true - /execa/6.1.0: - resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + /execa/7.0.0: + resolution: {integrity: sha512-tQbH0pH/8LHTnwTrsKWideqi6rFB/QNUawEwrn+WHyz7PX1Tuz2u7wfTvbaNBdP5JD5LVWxNo8/A8CHNZ3bV6g==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 - human-signals: 3.0.1 + human-signals: 4.3.0 is-stream: 3.0.0 merge-stream: 2.0.0 npm-run-path: 5.1.0 @@ -3310,6 +3950,10 @@ packages: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true + /fast-levenshtein/2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + /fastq/1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} dependencies: @@ -3320,6 +3964,13 @@ packages: resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==} dev: true + /file-entry-cache/6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.0.4 + dev: true + /filelist/1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: @@ -3333,6 +3984,34 @@ packages: to-regex-range: 5.0.1 dev: true + /find-up/4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up/5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache/3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.7 + rimraf: 3.0.2 + dev: true + + /flatted/3.2.7: + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + dev: true + /flowchart.ts/0.1.2: resolution: {integrity: sha512-4N8U2gXTkWUYh57SkCYwnSBM2B9Djia+JjClx/rLA13m0xz2S5BZht/9DvTZH5yXGZkmk7NGxGB15tnbUSI6mg==} dependencies: @@ -3405,6 +4084,11 @@ packages: engines: {node: '>=6.9.0'} dev: true + /get-caller-file/2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + /get-intrinsic/1.2.0: resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} dependencies: @@ -3430,8 +4114,8 @@ packages: get-intrinsic: 1.2.0 dev: true - /giscus/1.2.6: - resolution: {integrity: sha512-VqMWmCdlUk9krX2M3oMgn9/Y6XEbRXRHtfhNTuRn/AdeGOeko54OFEIsizQ/nYWymuUNGZR48KGptCtYL77rtA==} + /giscus/1.2.8: + resolution: {integrity: sha512-pufrgQYt1W+4ztiWp/PilLPN8NdyKvpbQ8jNqbAa1g84t6qqyevXHfkOYCi4x4d+y191vJAUc6seL1Dq74yUeA==} dependencies: lit: 2.6.1 dev: true @@ -3443,6 +4127,13 @@ packages: is-glob: 4.0.3 dev: true + /glob-parent/6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + /glob/7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -3459,6 +4150,13 @@ packages: engines: {node: '>=4'} dev: true + /globals/13.20.0: + resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + /globalthis/1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} @@ -3466,6 +4164,18 @@ packages: define-properties: 1.1.4 dev: true + /globby/11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + /globby/13.1.3: resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -3487,6 +4197,10 @@ packages: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} dev: true + /grapheme-splitter/1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + dev: true + /gray-matter/4.0.3: resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} engines: {node: '>=6.0'} @@ -3560,8 +4274,8 @@ packages: resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} dev: true - /hls.js/1.3.2: - resolution: {integrity: sha512-qb9xNRBnYoNuJfACsolKzlzNxl0ietBxC6Aa1H45GZTkmg3XjEc7gfXThCINCw/0F+sm3n0x1m4toqWecxjWwA==} + /hls.js/1.3.4: + resolution: {integrity: sha512-iFEwVqtEDk6sKotcTwtJ5OMo/nuDTk9PrpB8FI2J2WYf8EriTVfR4FaK0aNyYtwbYeRSWCXJKlz23xeREdlNYg==} dev: true /html-entities/1.4.0: @@ -3577,9 +4291,15 @@ packages: entities: 4.4.0 dev: true - /human-signals/3.0.1: - resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} - engines: {node: '>=12.20.0'} + /human-signals/4.3.0: + resolution: {integrity: sha512-zyzVyMjpGBX2+6cDVZeFPCdtOtdsxOeseRhB9tkQ6xXmGUNrcnBzdEKPy3VPNYz+4gy1oukVOXcrJCunSyc6QQ==} + engines: {node: '>=14.18.0'} + dev: true + + /husky/8.0.3: + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} + engines: {node: '>=14'} + hasBin: true dev: true /iconv-lite/0.6.3: @@ -3610,12 +4330,25 @@ packages: resolution: {integrity: sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w==} dev: true + /import-fresh/3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + /imsc/1.1.3: resolution: {integrity: sha512-IY0hMkVTNoqoYwKEp5UvNNKp/A5jeJUOrIO7judgOyhHT+xC6PA4VBOMAOhdtAYbMRHx9DTgI8p6Z6jhYQPFDA==} dependencies: sax: 1.2.1 dev: true + /imurmurhash/0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + /inflight/1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: @@ -3720,6 +4453,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + /is-glob/4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -3758,6 +4496,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /is-path-inside/3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + /is-regex/1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} @@ -3847,6 +4590,10 @@ packages: supports-color: 7.2.0 dev: true + /js-sdsl/4.3.0: + resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==} + dev: true + /js-tokens/4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true @@ -3859,6 +4606,13 @@ packages: esprima: 4.0.1 dev: true + /js-yaml/4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + /jsesc/0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true @@ -3870,6 +4624,10 @@ packages: hasBin: true dev: true + /json-schema-traverse/0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + /json-schema-traverse/1.0.0: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} dev: true @@ -3878,6 +4636,17 @@ packages: resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} dev: true + /json-stable-stringify-without-jsonify/1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /json5/1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + /json5/2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} @@ -3926,6 +4695,14 @@ packages: engines: {node: '>=6'} dev: true + /levn/0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + /lie/3.1.1: resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} dependencies: @@ -3974,6 +4751,20 @@ packages: lie: 3.1.1 dev: true + /locate-path/5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path/6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + /lodash-es/4.17.21: resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} dev: true @@ -3982,6 +4773,10 @@ packages: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} dev: true + /lodash.merge/4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + /lodash.sortby/4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} dev: true @@ -4004,14 +4799,21 @@ packages: yallist: 3.1.1 dev: true + /lru-cache/6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + /magic-string/0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: sourcemap-codec: 1.4.8 dev: true - /markdown-it-anchor/8.6.6_203ea4fed94a963ea5da6bb0985d1ff7: - resolution: {integrity: sha512-jRW30YGywD2ESXDc+l17AiritL0uVaSnWsb26f+68qaW9zgbIIr1f4v2Nsvc0+s0Z2N3uX6t/yAw7BwCQ1wMsA==} + /markdown-it-anchor/8.6.7_ea7kj7wzjkld5jo2noyjqxi764: + resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==} peerDependencies: '@types/markdown-it': '*' markdown-it: '*' @@ -4071,19 +4873,25 @@ packages: engines: {node: '>= 8'} dev: true - /mermaid/9.3.0: - resolution: {integrity: sha512-mGl0BM19TD/HbU/LmlaZbjBi//tojelg8P/mxD6pPZTAYaI+VawcyBdqRsoUHSc7j71PrMdJ3HBadoQNdvP5cg==} + /mermaid/10.0.1: + resolution: {integrity: sha512-3O3QfTE0Ohhe3jbzsiQImKKnnARoZS3QQt/cyLbfnFaKN5fRs0tf0cOznCTpZHyB/r505S1qGrJJNYXxmMcYyg==} dependencies: '@braintree/sanitize-url': 6.0.2 + cytoscape: 3.23.0 + cytoscape-cose-bilkent: 4.1.0_cytoscape@3.23.0 + cytoscape-fcose: 2.2.0_cytoscape@3.23.0 d3: 7.8.2 - dagre-d3-es: 7.0.6 - dompurify: 2.4.1 + dagre-d3-es: 7.0.9 + dayjs: 1.11.7 + dompurify: 2.4.3 + elkjs: 0.8.2 khroma: 2.0.0 lodash-es: 4.17.21 - moment-mini: 2.29.4 non-layered-tidy-tree-layout: 2.0.2 stylis: 4.1.3 + ts-dedent: 2.2.0 uuid: 9.0.0 + web-worker: 1.2.0 dev: true /mhchemparser/4.1.1: @@ -4121,6 +4929,10 @@ packages: brace-expansion: 2.0.1 dev: true + /minimist/1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + dev: true + /mitt/3.0.0: resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==} dev: true @@ -4129,10 +4941,6 @@ packages: resolution: {integrity: sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==} dev: true - /moment-mini/2.29.4: - resolution: {integrity: sha512-uhXpYwHFeiTbY9KSgPPRoo1nt8OxNVdMVoTBYHfSEKeRkIkwGpO+gERmhuhBtzfaeOyTkykSrm2+noJBgqt3Hg==} - dev: true - /mpegts.js/1.7.2: resolution: {integrity: sha512-qQ1ELBDC4IAqpULFuFzp3hoQeKwD5BCR3UM9Lk2+kj9jCWcXl19spF7PdzX0ZljghPHAj/VL2ajBbGyMWk2fgA==} dependencies: @@ -4150,6 +4958,14 @@ packages: hasBin: true dev: true + /natural-compare-lite/1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + dev: true + + /natural-compare/1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + /node-releases/2.0.10: resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} dev: true @@ -4200,6 +5016,15 @@ packages: object-keys: 1.1.1 dev: true + /object.values/1.1.6: + resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.21.1 + dev: true + /once/1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: @@ -4226,6 +5051,18 @@ packages: kind-of: 6.0.3 dev: true + /optionator/0.9.1: + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + /ora/6.1.2: resolution: {integrity: sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -4241,6 +5078,46 @@ packages: wcwidth: 1.0.1 dev: true + /p-limit/2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit/3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate/4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate/5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /p-try/2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /parent-module/1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + /parse5-htmlparser2-tree-adapter/7.0.0: resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} dependencies: @@ -4254,6 +5131,15 @@ packages: entities: 4.4.0 dev: true + /path-browserify/1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + dev: true + + /path-exists/4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + /path-is-absolute/1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} @@ -4278,8 +5164,8 @@ packages: engines: {node: '>=8'} dev: true - /photoswipe/5.3.5: - resolution: {integrity: sha512-90JeebKBhjz1co9goGJ4vjDK84YhGKbLO8J/aKcoWS/OGddVZB77ONIs7igUKa0IB1HozTs0BiS184wzZCghMw==} + /photoswipe/5.3.6: + resolution: {integrity: sha512-v7e8iMfaPUujTACYsK5HBCCtFoW9n2dMZmjIlbvFS2oSpTQmPrfc3PrWnGx8OGY3jNOKho8JC8L277+m+9ag9Q==} engines: {node: '>= 0.12.0'} dev: true @@ -4302,6 +5188,11 @@ packages: url-polyfill: 1.1.12 dev: true + /pngjs/5.0.0: + resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} + engines: {node: '>=10.13.0'} + dev: true + /postcss-load-config/4.0.1_postcss@8.4.21: resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} engines: {node: '>= 14'} @@ -4319,6 +5210,14 @@ packages: yaml: 2.2.1 dev: true + /postcss-selector-parser/6.0.11: + resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + /postcss-value-parser/4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} dev: true @@ -4332,6 +5231,11 @@ packages: source-map-js: 1.0.2 dev: true + /prelude-ls/1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + /pretty-bytes/5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} @@ -4347,6 +5251,17 @@ packages: engines: {node: '>=6'} dev: true + /qrcode/1.5.1: + resolution: {integrity: sha512-nS8NJ1Z3md8uTjKtP+SGGhfqmTCs5flU/xR623oI0JX+Wepz9R8UrRVCTBTJm3qGw3rH6jJ6MUHjkDx15cxSSg==} + engines: {node: '>=10.13.0'} + hasBin: true + dependencies: + dijkstrajs: 1.0.2 + encode-utf8: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 + dev: true + /queue-microtask/1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true @@ -4413,6 +5328,11 @@ packages: functions-have-names: 1.2.3 dev: true + /regexpp/3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + dev: true + /regexpu-core/5.2.2: resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==} engines: {node: '>=4'} @@ -4440,11 +5360,25 @@ packages: jsesc: 0.5.0 dev: true + /require-directory/2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + /require-from-string/2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} dev: true + /require-main-filename/2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + dev: true + + /resolve-from/4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + /resolve/1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true @@ -4472,6 +5406,13 @@ packages: engines: {node: '>=10.0.0'} dev: true + /rimraf/3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + /robust-predicates/3.0.1: resolution: {integrity: sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==} dev: true @@ -4497,8 +5438,8 @@ packages: fsevents: 2.3.2 dev: true - /rollup/3.14.0: - resolution: {integrity: sha512-o23sdgCLcLSe3zIplT9nQ1+r97okuaiR+vmAPZPTDYB7/f3tgWIYNyiQveMsZwshBT0is4eGax/HH83Q7CG+/Q==} + /rollup/3.18.0: + resolution: {integrity: sha512-J8C6VfEBjkvYPESMQYxKHxNOh4A5a3FlP+0BETGo34HEcE4eTlgCrO2+eWzlu2a/sHs2QUkZco+wscH7jhhgWg==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -4531,8 +5472,8 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /sass/1.58.0: - resolution: {integrity: sha512-PiMJcP33DdKtZ/1jSjjqVIKihoDc6yWmYr9K/4r3fVVIEDAluD0q7XZiRKrNJcPK3qkLRF/79DND1H5q1LBjgg==} + /sass/1.58.3: + resolution: {integrity: sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -4562,12 +5503,24 @@ packages: hasBin: true dev: true + /semver/7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + /serialize-javascript/4.0.0: resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} dependencies: randombytes: 2.1.0 dev: true + /set-blocking/2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + dev: true + /shebang-command/2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} @@ -4603,6 +5556,11 @@ packages: sax: 1.2.4 dev: true + /slash/3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + /slash/4.0.0: resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} engines: {node: '>=12'} @@ -4650,6 +5608,15 @@ packages: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true + /string-width/4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + /string.prototype.matchall/4.0.8: resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} dependencies: @@ -4694,6 +5661,13 @@ packages: is-regexp: 1.0.0 dev: true + /strip-ansi/6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + /strip-ansi/7.0.1: resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} engines: {node: '>=12'} @@ -4706,6 +5680,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /strip-bom/3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + /strip-comments/2.0.1: resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} engines: {node: '>=10'} @@ -4716,6 +5695,11 @@ packages: engines: {node: '>=12'} dev: true + /strip-json-comments/3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + /striptags/3.2.0: resolution: {integrity: sha512-g45ZOGzHDMe2bdYMdIvdAfCQkCTDMGBazSw1ypMowwGIee7ZQ5dU0rBJ8Jqgl+jAKIv4dbeE1jscZq9wid1Tkw==} dev: true @@ -4769,6 +5753,10 @@ packages: source-map-support: 0.5.21 dev: true + /text-table/0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + /to-fast-properties/2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} @@ -4791,6 +5779,24 @@ packages: resolution: {integrity: sha512-+1iDGY6NmOGidq7i7xZGA4cm8DAa6fqdYcvO5Z6yBevH++Bdo9Qt/mN0TzHUgcCcKv1gmh9+W5dHqz8pMWbCbg==} dev: true + /ts-dedent/2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} + dev: true + + /tsconfig-paths/3.14.2: + resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + dev: true + + /tslib/1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + /tslib/2.3.0: resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} dev: true @@ -4799,8 +5805,25 @@ packages: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} dev: true - /twikoo/1.6.9: - resolution: {integrity: sha512-Umm2kqj4gPkTqxCbHpLO8QLq+T3fn4OPIa5hqW7amYj2aBVVOIdd3dsBbvE1sYT94GFu+Ivea/L41nR1g4lqqw==} + /tsutils/3.21.0_typescript@3.9.10: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 3.9.10 + dev: true + + /twikoo/1.6.10: + resolution: {integrity: sha512-5CPfRUzd8kHvNB6ekYXvgEbsIEQuySBOm47VkMh3nI4rj79crT+2v9aCDVuson+KorEngdGfe5MOni0VKNblmQ==} + dev: true + + /type-check/0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 dev: true /type-fest/0.16.0: @@ -4808,6 +5831,11 @@ packages: engines: {node: '>=10'} dev: true + /type-fest/0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + /typed-array-length/1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: @@ -4816,6 +5844,12 @@ packages: is-typed-array: 1.1.10 dev: true + /typescript/3.9.10: + resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true + /ua-parser-js/1.0.33: resolution: {integrity: sha512-RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ==} dev: true @@ -4908,8 +5942,8 @@ packages: hasBin: true dev: true - /vite/4.0.4: - resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} + /vite/4.1.4: + resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -4936,7 +5970,7 @@ packages: esbuild: 0.16.17 postcss: 8.4.21 resolve: 1.22.1 - rollup: 3.14.0 + rollup: 3.18.0 optionalDependencies: fsevents: 2.3.2 dev: true @@ -4956,6 +5990,24 @@ packages: vue: 3.2.47 dev: true + /vue-eslint-parser/9.1.0_eslint@8.35.0: + resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.35.0 + eslint-scope: 7.1.1 + eslint-visitor-keys: 3.3.0 + espree: 9.4.1 + esquery: 1.5.0 + lodash: 4.17.21 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + dev: true + /vue-router/4.1.6_vue@3.2.47: resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==} peerDependencies: @@ -4975,14 +6027,15 @@ packages: '@vue/shared': 3.2.47 dev: true - /vuepress-plugin-auto-catalog/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-/J4x5mBrgAkbi5gYjkBDAGfWQhX74R7lJq8tYxo4HUo/9ZDczO0LKVP7hZoWlaDGO89S1LadFpbun/DTVs2D0A==} + /vuepress-plugin-auto-catalog/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-qY4kBglePu3L8Z41DZpOA1UNWc9RGs4df0ffDNQFmqXf+gMyNshA/43l8be/JgVbIh2GF+rlJAIvkdwuh7MmXQ==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5001,28 +6054,29 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-components: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-components: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-blog2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-6EVXWIotmf1PaW0xOU85HsvkcRuPNb0abXcsGUAQ1NknCumxLWaYAaHjY6Unnf/fFoDz3THmrAMoegUnwTBfTw==} + /vuepress-plugin-blog2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-0NzFK2+iCGjLr49qwu2q6J78/2HUuAq21AtqhrFmDZm2/OSIkI9SXZ/nUdhCLr3KBxNmnCU+IPN0ilvSyCLqRw==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5035,27 +6089,29 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 chokidar: 3.5.3 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-comment2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-9ptTMLGUxvOR8WkC1egn9AS+Ytr9jW0VW0ksLn4ZZ7lefbmALSpBi8qqkVFJmFpTgiPktta/TevAgQ5CPXQ1QA==} + /vuepress-plugin-comment2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-MV60V/yfVz+ZYTNcWXHJ/YLJgBFBhfWwntjUGOoJlvYbSswbxyxdQPtLpzJrB3LAN4qEy2I8hSOSgvTdKtDrZQ==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5072,31 +6128,32 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 '@waline/client': 2.14.7 artalk: 2.4.4 - giscus: 1.2.6 - twikoo: 1.6.9 + giscus: 1.2.8 + twikoo: 1.6.10 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-components/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-2ajbcVQ4x9TSRBw72Fd4k+dHGAxx+MvEvsihxP5U3sL7MD+34ncR5AMsi27ahBkF3blcE4MFt9W+/AcC91CtLg==} + /vuepress-plugin-components/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-y/dwVS6fKOXHj/o+cgXyIlDKmBZv+zJ7209tVixYrEBoFcM6onYA4/3Ed7TVO4QljsRphGsi5EqiFwC0Uk8c0A==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5116,35 +6173,37 @@ packages: optional: true dependencies: '@stackblitz/sdk': 1.8.2 - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 artplayer: 4.6.2 balloon-css: 1.2.0 - dashjs: 4.5.2 - hls.js: 1.3.2 + dashjs: 4.6.0 + hls.js: 1.3.4 mpegts.js: 1.7.2 plyr: 3.7.3 + qrcode: 1.5.1 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-reading-time2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-reading-time2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-copy-code2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-Ty1gVNvbSr2WJAcOTsCOorYhQNtScbOFSgJ5NCe544eJ4GylhV1WW+RhEL8g2GRNrG+JXxx8WHC2EMYsYD2Ghg==} + /vuepress-plugin-copy-code2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-SMLU92BmlbhRoYYUSrZVAubQ5nhYbNJKGg1hLNtmXcp/XxmNqQK8L9R9+o6u7YL7Xkle0R609eFveYqSYkBI8Q==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5161,28 +6220,29 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 balloon-css: 1.2.0 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-copyright2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-RNaEPQ2o80XskWiGaF31yJhw7DCpuCMKzYwkQY9Gxk3rMbz72+lA48Ah/u6LQS61gUZxk+g50xMC+OdZwCFhuw==} + /vuepress-plugin-copyright2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-XmijINLqpG0Q7+VeIN08gwPpj6MwmONdau8QfzTu9NaFYNj7rg24Rs0pCMEwLxE8yoweh9A7zKKGfYrqUGXPRg==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5195,26 +6255,26 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-feed2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-ce/nOdrdBcgxYc18KdUS9on3NRSKpOarj2/OONoInT9Uk74nAVR0SpFwPkWwI3rdGiHmbzJZ3Aj/Yy0oQeklVQ==} + /vuepress-plugin-feed2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-HFExLZ9GL/5zhK564+8lzsYKlbSv0hLRiTh4wHQOtqiQSGA7ZzGywaXyRZnWOh1u1GKeuPSaPHLgLiUiXtlC2Q==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: vuepress: optional: true @@ -5223,24 +6283,27 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 cheerio: 1.0.0-rc.12 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe xml-js: 1.6.11 transitivePeerDependencies: + - '@vue/composition-api' + - '@vuepress/client' - supports-color dev: true - /vuepress-plugin-md-enhance/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-LmrWJSmd2PG8+3X/lmpJ6E5EZ4+Uu4vsjM6qm3DZjUGg+lXmAMRLulMslVdfHfrJbITeIKM9X8+V6X1CECAUyg==} + /vuepress-plugin-md-enhance/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-YabS06pMEabqZUUsH5tFfj3bXL/5byYaFo73gyHQe/zigbhAlJtFmbA5SqE8AaSUA4eFPMpx1XVOUS73obV5Hg==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5257,59 +6320,59 @@ packages: vuepress-webpack: optional: true dependencies: - '@babel/core': 7.20.12 - '@mdit/plugin-align': 0.2.3 - '@mdit/plugin-attrs': 0.2.3 - '@mdit/plugin-container': 0.2.3 - '@mdit/plugin-figure': 0.2.3 - '@mdit/plugin-footnote': 0.2.3 - '@mdit/plugin-img-lazyload': 0.2.3 - '@mdit/plugin-img-mark': 0.2.3 - '@mdit/plugin-img-size': 0.2.3 - '@mdit/plugin-include': 0.2.3 - '@mdit/plugin-katex': 0.2.3 - '@mdit/plugin-mark': 0.2.3 - '@mdit/plugin-mathjax': 0.2.3 - '@mdit/plugin-stylize': 0.2.3 - '@mdit/plugin-sub': 0.2.3 - '@mdit/plugin-sup': 0.2.3 - '@mdit/plugin-tab': 0.2.3 - '@mdit/plugin-tasklist': 0.2.3 - '@mdit/plugin-tex': 0.2.3 - '@mdit/plugin-uml': 0.2.3 - '@mermaid-js/mermaid-mindmap': 9.3.0 + '@babel/core': 7.21.0 + '@mdit/plugin-align': 0.3.0 + '@mdit/plugin-attrs': 0.3.0 + '@mdit/plugin-container': 0.3.0 + '@mdit/plugin-figure': 0.3.0 + '@mdit/plugin-footnote': 0.3.0 + '@mdit/plugin-img-lazyload': 0.3.0 + '@mdit/plugin-img-mark': 0.3.0 + '@mdit/plugin-img-size': 0.3.0 + '@mdit/plugin-include': 0.3.0 + '@mdit/plugin-katex': 0.3.0 + '@mdit/plugin-mark': 0.3.0 + '@mdit/plugin-mathjax': 0.3.0 + '@mdit/plugin-stylize': 0.3.0 + '@mdit/plugin-sub': 0.3.0 + '@mdit/plugin-sup': 0.3.0 + '@mdit/plugin-tab': 0.3.0 + '@mdit/plugin-tasklist': 0.3.0 + '@mdit/plugin-tex': 0.3.0 + '@mdit/plugin-uml': 0.3.0 '@types/markdown-it': 12.2.3 '@vue/repl': 1.3.2_vue@3.2.47 - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 balloon-css: 1.2.0 - chart.js: 4.2.0 + chart.js: 4.2.1 echarts: 5.4.1 flowchart.ts: 0.1.2 katex: 0.16.4 markdown-it: 13.0.1 - mermaid: 9.3.0 + mermaid: 10.0.1 reveal.js: 4.4.0 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-photo-swipe/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-7wLJ0sdBJBfne1d1W/WiomSeKSWGw1Lpcu6NuzdOkIElvqJGSCc+qB+w9/9jaXGsaTQzgEeXIppSLAofOY7Lrg==} + /vuepress-plugin-photo-swipe/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-/xP5Q4ue0tJrbHFuUbopVjXVr5Qh9wR7jjX1e3WjS+ossxF+wrDqMglgJz0KmaztUK0Cam9zPJbP4AdTUuFTSw==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5326,29 +6389,30 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 - photoswipe: 5.3.5 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 + photoswipe: 5.3.6 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-pwa2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-Xf25I6k8LkrVKZvRjx0KF6FPEfAqcLELYI0QtwlyWN9WvPs4C8DP7ukGaLMm/cDTHTHn/C0FkLYM8awObbC3zA==} + /vuepress-plugin-pwa2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-Osa7a0gnpxXIxg9tanTM/9OyUDR3bOBWUpEBavZz1PTg/Xk/g0DKykaPbZkx3GO3Le+xFvI+s4gnSJ8BXzSvQQ==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5365,17 +6429,17 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 mitt: 3.0.0 register-service-worker: 1.7.2 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe workbox-build: 6.5.4 transitivePeerDependencies: - '@types/babel__core' @@ -5383,13 +6447,13 @@ packages: - supports-color dev: true - /vuepress-plugin-reading-time2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-u/JjNoR/GI/syUnikecQ/PfHARKhErH+Be9ZDmq6kzaPtVbtJyua3W9PH+b/fkvvcLM2mY76mRgZ70mnHq9GEg==} + /vuepress-plugin-reading-time2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-WV9X30BX4HBHRycX6R85jilUifY7FpgDBY0lwft+Fxfuf5Pf1+AuS0uuc4glWGbSjTxsQxbseLwRsHEgK3/E5Q==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: vuepress: optional: true @@ -5400,19 +6464,21 @@ packages: vuepress-webpack: optional: true dependencies: - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: + - '@vue/composition-api' + - '@vuepress/client' - supports-color dev: true - /vuepress-plugin-rtl/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-rp3cG2Rife0OwA5j+cqtdx6xt6qmhx25m0zqSv8GMXDxndzCCiOZioHv0f+y8PfYhzhlIhjwgxwd8TuY8mN+/Q==} + /vuepress-plugin-rtl/2.0.0-beta.185_vuepress@2.0.0-beta.61: + resolution: {integrity: sha512-Su7yNRv9lBBbwmz8AJOUNlQY5t6LTe8P3h9xkj97Z12GtQbcQ0oj72eB4Il6qkA4l/6o4lwALVLs86aqM4eQ+g==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: vuepress: optional: true @@ -5421,24 +6487,25 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 vue: 3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-sass-palette/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-ziybGwkOzcW0wTC4F/n2rFYMDqa0uDdSHHJPfhvc/cIOh/WEkSmQnbpWZ4/EC0mUrdQ2L6Bz9XLWTlG6fTcnPw==} + /vuepress-plugin-sass-palette/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-ovbjTdNCfcXOk8q52g145WsmXq3s1JN3APBHe2vJ+H/JBczi7ew+m3u7A8D6us+FRn7ikiomvcnJlfbYpROyYA==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: sass-loader: optional: true @@ -5451,24 +6518,27 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 chokidar: 3.5.3 - sass: 1.58.0 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + sass: 1.58.3 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: + - '@vue/composition-api' + - '@vuepress/client' - supports-color dev: true - /vuepress-plugin-search-pro/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-YvAxROcj7/slfqpwo4GPaOAU+jy3Hi/fHM5vhqUchptcOOM2whhO5ELxtYk7+9L/dKnwY7ywSm5D1KPNefvt6Q==} + /vuepress-plugin-search-pro/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-Y5LZtcTcdZRiJXim3qERVlXJOokEI/IhPTirgdL51FVGm4cRH5WN4QU8OMN0GF+zt7mRu4GS6dR9lr2VMfB8ug==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5485,30 +6555,30 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 body-scroll-lock: 3.1.5 cheerio: 1.0.0-rc.12 chokidar: 3.5.3 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: true - /vuepress-plugin-seo2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-IZGuepbuZONDHK7c/ca71KBrPEMl+YFgkjtU35d84TwV6WJzMEX4kFYL6cE4/H5jBuKLrcSpo+7DdThaGYXKmw==} + /vuepress-plugin-seo2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-QKjZwGL3g1LPjiHjzG4MAyFLv3EaqVbnSQYHfV7S2QM4WtFeZMSTBpvASZ71UnvCY1W+nYzztpRjGKBaN3efDA==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: vuepress: optional: true @@ -5517,21 +6587,23 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: + - '@vue/composition-api' + - '@vuepress/client' - supports-color dev: true - /vuepress-plugin-sitemap2/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-QkfD5rwMSIBAFCBPtOtXU2L6GMcKFoeHLFM38oOfNwvMnvK5jmW9FFL0NPnZRQ/NT9/MaLCk3a9E+EUwajqZig==} + /vuepress-plugin-sitemap2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-xrSq1eJI7IncaAniKH8EdT7v3+b/y+SSR3tjKip/QZDXyKIklgtZr59FVfT6tJEgoZMnQXL8W+NTm4gFVsVHmQ==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: vuepress: optional: true @@ -5542,22 +6614,25 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 sitemap: 7.1.1 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: + - '@vue/composition-api' + - '@vuepress/client' - supports-color dev: true - /vuepress-shared/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-Nsv09nw3FWe/ilsoIBjqlIiUirFUBtHCnu7NYkhiu291nWeobqp9ywlFjvQ8JcXJhUe17Jk9CUF3iv8D068Hew==} + /vuepress-shared/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-jATVUHj4NTxzgY1txwpI6NNqRXHWDj2M9KnqLkAqQxZmkPIAAgp+flMY5zg60GolJU1uVc66cyE0LPUJK0HmSg==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5568,30 +6643,34 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 cheerio: 1.0.0-rc.12 dayjs: 1.11.7 - execa: 6.1.0 + execa: 7.0.0 fflate: 0.7.4 gray-matter: 4.0.3 + semver: 7.3.8 striptags: 3.2.0 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: true - /vuepress-theme-hope/2.0.0-beta.172_vuepress@2.0.0-beta.60: - resolution: {integrity: sha512-/pGlVGB6iSu/Ygq2SlTQtvRi1g7Kw3fJpEF2Tl+Zn6ZVZvS9mZeMmY8i0M4T4iuWcYXb+hjSSeJQg9lGOiT28A==} + /vuepress-theme-hope/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe: + resolution: {integrity: sha512-7ett3a1kO+fgQmvSdqpAxDcMlG5R8wex6wK907XhjZCDAEHTgmomIRpFnhG8atrrjDp7wKHSTGQRSbXvEp7pSg==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'} peerDependencies: + '@vuepress/client': 2.0.0-beta.61 sass-loader: ^13.2.0 - vuepress: 2.0.0-beta.60 - vuepress-vite: 2.0.0-beta.60 - vuepress-webpack: 2.0.0-beta.60 + vuepress: 2.0.0-beta.61 + vuepress-vite: 2.0.0-beta.61 + vuepress-webpack: 2.0.0-beta.61 peerDependenciesMeta: '@vuepress/client': optional: true @@ -5653,20 +6732,20 @@ packages: optional: true dependencies: '@types/body-scroll-lock': 3.1.0 - '@vuepress/cli': 2.0.0-beta.60 - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/plugin-active-header-links': 2.0.0-beta.60 - '@vuepress/plugin-container': 2.0.0-beta.60 - '@vuepress/plugin-external-link-icon': 2.0.0-beta.60 - '@vuepress/plugin-git': 2.0.0-beta.60 - '@vuepress/plugin-nprogress': 2.0.0-beta.60 - '@vuepress/plugin-palette': 2.0.0-beta.60 - '@vuepress/plugin-prismjs': 2.0.0-beta.60 - '@vuepress/plugin-theme-data': 2.0.0-beta.60 - '@vuepress/shared': 2.0.0-beta.60 - '@vuepress/utils': 2.0.0-beta.60 - '@vueuse/core': 9.12.0_vue@3.2.47 + '@vuepress/cli': 2.0.0-beta.61 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/plugin-active-header-links': 2.0.0-beta.61 + '@vuepress/plugin-container': 2.0.0-beta.61 + '@vuepress/plugin-external-link-icon': 2.0.0-beta.61 + '@vuepress/plugin-git': 2.0.0-beta.61 + '@vuepress/plugin-nprogress': 2.0.0-beta.61 + '@vuepress/plugin-palette': 2.0.0-beta.61 + '@vuepress/plugin-prismjs': 2.0.0-beta.61 + '@vuepress/plugin-theme-data': 2.0.0-beta.61 + '@vuepress/shared': 2.0.0-beta.61 + '@vuepress/utils': 2.0.0-beta.61 + '@vueuse/core': 9.13.0_vue@3.2.47 balloon-css: 1.2.0 bcrypt-ts: 3.0.0 body-scroll-lock: 3.1.5 @@ -5675,41 +6754,41 @@ packages: gray-matter: 4.0.3 vue: 3.2.47 vue-router: 4.1.6_vue@3.2.47 - vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc - vuepress-plugin-auto-catalog: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-blog2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-comment2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-components: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-copy-code2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-copyright2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-feed2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-md-enhance: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-photo-swipe: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-pwa2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-reading-time2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-rtl: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-seo2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-plugin-sitemap2: 2.0.0-beta.172_vuepress@2.0.0-beta.60 - vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60 + vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u + vuepress-plugin-auto-catalog: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-blog2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-comment2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-components: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-copy-code2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-copyright2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-feed2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-md-enhance: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-photo-swipe: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-pwa2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-reading-time2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-rtl: 2.0.0-beta.185_vuepress@2.0.0-beta.61 + vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-seo2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-plugin-sitemap2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe + vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe transitivePeerDependencies: - '@types/babel__core' - '@vue/composition-api' - supports-color dev: true - /vuepress-vite/2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc: - resolution: {integrity: sha512-ljHvo419nbfYl/cQecVbYL4bwJjUOX0+z76v/4yX6ODeGIpdHIs7ARZ4t52mr0EEfwP6aZbZa+qFZTTQutxAuQ==} + /vuepress-vite/2.0.0-beta.61_zcwlgd45apez724duilctoxt4u: + resolution: {integrity: sha512-4mcR8XSY5b36CYkPqF80WvoeGAEjTw6Cr9bMPHrPVSjG4qqyfVpdSdyRtXD+/5aLJB7r/L60J7PI1pKTci1+3w==} hasBin: true peerDependencies: - '@vuepress/client': 2.0.0-beta.60 - vue: ^3.2.45 + '@vuepress/client': 2.0.0-beta.61 + vue: ^3.2.47 dependencies: - '@vuepress/bundler-vite': 2.0.0-beta.60 - '@vuepress/cli': 2.0.0-beta.60 - '@vuepress/client': 2.0.0-beta.60 - '@vuepress/core': 2.0.0-beta.60 - '@vuepress/theme-default': 2.0.0-beta.60 + '@vuepress/bundler-vite': 2.0.0-beta.61 + '@vuepress/cli': 2.0.0-beta.61 + '@vuepress/client': 2.0.0-beta.61 + '@vuepress/core': 2.0.0-beta.61 + '@vuepress/theme-default': 2.0.0-beta.61 vue: 3.2.47 transitivePeerDependencies: - '@types/node' @@ -5724,11 +6803,11 @@ packages: - ts-node dev: true - /vuepress/2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc: - resolution: {integrity: sha512-evkv5PtX5pdlEyY5EcEV+rN/HTmi8iG7ZcvAnMFfYKWdvKiUjE+/DPwZfmE8emx33FEE2htbAKgtruABTocEjA==} + /vuepress/2.0.0-beta.61_zcwlgd45apez724duilctoxt4u: + resolution: {integrity: sha512-gpttL0x5ZvI9eTyR/pexBknIAcgrdjAWoiJc7OYd4bIVfwlXAb4GO4A2EwRSX+pIaNOWdcd+sfZA86EMEbrtNg==} hasBin: true dependencies: - vuepress-vite: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc + vuepress-vite: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u transitivePeerDependencies: - '@types/node' - '@vue/composition-api' @@ -5750,6 +6829,10 @@ packages: defaults: 1.0.4 dev: true + /web-worker/1.2.0: + resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==} + dev: true + /webidl-conversions/4.0.2: resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} dev: true @@ -5776,6 +6859,10 @@ packages: is-symbol: 1.0.4 dev: true + /which-module/2.0.0: + resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} + dev: true + /which-typed-array/1.1.9: resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} engines: {node: '>= 0.4'} @@ -5800,6 +6887,11 @@ packages: resolution: {integrity: sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==} dev: true + /word-wrap/1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} + dev: true + /workbox-background-sync/6.5.4: resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==} dependencies: @@ -5818,10 +6910,10 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@apideck/better-ajv-errors': 0.3.6_ajv@8.12.0 - '@babel/core': 7.20.12 - '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@babel/core': 7.21.0 + '@babel/preset-env': 7.20.2_@babel+core@7.21.0 '@babel/runtime': 7.20.13 - '@rollup/plugin-babel': 5.3.1_d8e457a9eec5694be0a6185ede2794cb + '@rollup/plugin-babel': 5.3.1_4tnfxcmsyr7y5qv3uwkivwqysm '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1 '@rollup/plugin-replace': 2.4.2_rollup@2.79.1 '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -5946,6 +7038,15 @@ packages: workbox-core: 6.5.4 dev: true + /wrap-ansi/6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + /wrappy/1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: true @@ -5957,20 +7058,63 @@ packages: sax: 1.2.4 dev: true + /xml-name-validator/4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true + /xmldom-sre/0.1.31: resolution: {integrity: sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw==} engines: {node: '>=0.1'} dev: true + /y18n/4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + dev: true + /yallist/3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} dev: true + /yallist/4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + /yaml/2.2.1: resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} engines: {node: '>= 14'} dev: true + /yargs-parser/18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: true + + /yargs/15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.0 + y18n: 4.0.3 + yargs-parser: 18.1.3 + dev: true + + /yocto-queue/0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true + /zrender/5.4.1: resolution: {integrity: sha512-M4Z05BHWtajY2241EmMPHglDQAJ1UyHQcYsxDNzD9XLSkPDqMq4bB28v9Pb4mvHnVQ0GxyTklZ/69xCFP6RXBA==} dependencies: