Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_dailycode
提交
65109568
S
skill_tree_dailycode
项目概览
CSDN 技术社区
/
skill_tree_dailycode
通知
11
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_dailycode
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
65109568
编写于
6月 29, 2022
作者:
张
张志晨
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
隐藏token
上级
877e9745
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
46 addition
and
1 deletion
+46
-1
.gitignore
.gitignore
+1
-0
helper.py
helper.py
+45
-1
未找到文件。
.gitignore
浏览文件 @
65109568
...
...
@@ -11,3 +11,4 @@ data_source/dailycode
test.cpp
test.py
test.java
tree_algorithm_view.xlsx
\ No newline at end of file
helper.py
浏览文件 @
65109568
...
...
@@ -6,6 +6,8 @@ import collections
import
uuid
import
json
import
shutil
import
pandas
as
pd
from
pyparsing
import
match_previous_expr
def
get_files_path
(
file_dir
,
filetype
=
'.txt'
):
...
...
@@ -518,4 +520,46 @@ def auto_gen_increment_exercises_template():
f
.
write
(
solution_md_data
)
auto_gen_increment_exercises_template
()
\ No newline at end of file
from
fuzzywuzzy
import
fuzz
def
add_skilltree_leaf_link
():
data
=
pd
.
read_excel
(
'tree_algorithm_view.xlsx'
)
dir_list
=
[
'data/1.dailycode初阶'
,
'data/2.dailycode中阶'
,
'data/3.dailycode高阶'
]
languages
=
[
'1.cpp'
,
'2.java'
,
'3.python'
]
cout
=
0
for
dir
in
dir_list
:
for
language
in
languages
:
dest_dir
=
os
.
path
.
join
(
dir
,
language
)
exercises_dirs_
=
os
.
listdir
(
dest_dir
)
exercises_dirs
=
[]
for
tem_dir
in
exercises_dirs_
:
tem_dir
=
os
.
path
.
join
(
dest_dir
,
tem_dir
)
if
os
.
path
.
isdir
(
tem_dir
):
solution_md_path
=
os
.
path
.
join
(
tem_dir
,
'solution.md'
)
with
open
(
solution_md_path
,
'r'
)
as
f
:
solution_md_data
=
f
.
read
()
title
=
re
.
findall
(
r
'^# (.*)\n'
,
solution_md_data
)[
0
]
match_res
=
[]
for
idx
,
item
in
data
.
iterrows
():
text
=
item
[
2
]
+
'-'
+
item
[
3
]
link
=
'https://edu.csdn.net/skill/algorithm/{}'
.
format
(
item
[
4
])
match_score
=
fuzz
.
partial_ratio
(
title
,
text
)
match_res
.
append
(
match_score
)
max_score
=
max
(
match_res
)
index
=
match_res
.
index
(
max_score
)
target
=
data
.
loc
[
index
][
3
]
link
=
'https://edu.csdn.net/skill/algorithm/{}'
.
format
(
data
.
loc
[
index
][
4
])
solution_json_path
=
os
.
path
.
join
(
tem_dir
,
'solution.json'
)
solution_json_data
=
load_json
(
solution_json_path
)
solution_json_data
[
'skilltree_link'
]
=
link
dump_json
(
solution_json_path
,
solution_json_data
)
print
(
"query: "
,
title
,
"target: "
,
target
,
"max_score: "
,
max_score
)
print
(
link
)
add_skilltree_leaf_link
()
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录