File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,14 @@ const getColumns = () => [
19
19
{
20
20
key : "size" ,
21
21
dataIndex : "size" ,
22
+ // title: "数据规模",
22
23
title : t ( "Locale.complexityQuickCheck.dataScale" ) ,
23
24
align : "center" ,
24
25
} ,
25
26
{
26
27
key : "complexity" ,
27
28
dataIndex : "complexity" ,
29
+ // title: "算法可接受时间复杂度",
28
30
title : t ( "Locale.complexityQuickCheck.timeComplexity" ) ,
29
31
align : "center" ,
30
32
render : ( t ) => {
@@ -82,6 +84,7 @@ export default function ComplexityRating() {
82
84
href = "https://lucifer.ren/blog/2020/12/21/shuati-silu3/"
83
85
target = "_blank"
84
86
>
87
+ { /* 不懂为什么?点这里 */ }
85
88
{ t ( "Locale.complexityQuickCheck.tips" ) }
86
89
</ Button >
87
90
Original file line number Diff line number Diff line change @@ -180,18 +180,24 @@ export default function DataStrutureVis() {
180
180
>
181
181
< ol >
182
182
< li >
183
+ { /* 暂不支持编辑功能。如果需要编辑,可通过先“使用”再“保存”,最后“删除”原有的数据,从而间接实现。 */ }
183
184
{ t ( "Locale.dataStructureVisualization.explain1" ) }
184
185
</ li >
185
186
< li >
186
- { t ( "Locale.dataStructureVisualization.explain2" ) }
187
+ { /* 模板可以增量使用。点击”去使用“的下拉三角,并选择增量使用即可。 */ }
187
188
189
+ { t ( "Locale.dataStructureVisualization.explain2" ) }
188
190
</ li >
189
191
< li >
190
- { t ( "Locale.dataStructureVisualization.explain3" ) }
191
-
192
+ { /* 使用的模板会根据你鼠标的位置生成。比如你的鼠标在点(100,
193
+ 100),那么模板会整体偏移 (100, 100)个单位
194
+ 。如果此时模板并不是正好以(100,
195
+ 100)为左上顶点,说明模板本身制作的时候就不是以(0,0)为左上顶点制作的。大家制作自定义模板的话需要注意这一点。 */ }
196
+ { t ( "Locale.dataStructureVisualization.explain3" ) }
192
197
</ li >
193
198
< li >
194
- { t ( "Locale.dataStructureVisualization.explain4" ) }
199
+ { /* 你也可以选择直接使用原生 excalidraw */ }
200
+ { t ( "Locale.dataStructureVisualization.explain4" ) }
195
201
196
202
< a href = "https://excalidraw.com/" > Website</ a >
197
203
</ li >
You can’t perform that action at this time.
0 commit comments