Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
tianyazhichiC
algorithm-visualizer
提交
f982dfae
A
algorithm-visualizer
项目概览
tianyazhichiC
/
algorithm-visualizer
与 Fork 源项目一致
从无法访问的项目Fork
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
algorithm-visualizer
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f982dfae
编写于
5月 27, 2016
作者:
D
duaraghav8@gmail
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'upstream/gh-pages' into gh-pages
上级
3b5403d8
4a834137
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
19 addition
and
12 deletion
+19
-12
css/stylesheet.css
css/stylesheet.css
+7
-6
js/module/array2d.js
js/module/array2d.js
+3
-3
js/module/weighted_directed_graph.js
js/module/weighted_directed_graph.js
+3
-3
js/tracer_manager.js
js/tracer_manager.js
+6
-0
未找到文件。
css/stylesheet.css
浏览文件 @
f982dfae
...
...
@@ -65,7 +65,7 @@ button:not([disabled]):hover {
.btn.active
,
button
.active
{
background
:
rgb
a
(
0
,
0
,
0
,
.2
8
);
background
:
rgb
(
38
,
38
,
3
8
);
}
.btn
input
,
...
...
@@ -138,7 +138,7 @@ nav h3 {
}
.sidemenu
#footer
{
border-top
:
2px
solid
rgb
a
(
0
,
0
,
0
,
.2
8
);
border-top
:
2px
solid
rgb
(
38
,
38
,
3
8
);
}
.sidemenu
button
{
...
...
@@ -181,7 +181,7 @@ section,
nav
,
section
{
border
:
1px
solid
rgb
a
(
0
,
0
,
0
,
.2
8
);
border
:
1px
solid
rgb
(
38
,
38
,
3
8
);
box-sizing
:
border-box
;
}
...
...
@@ -227,7 +227,7 @@ section {
z-index
:
5
;
padding
:
4px
;
font-size
:
14px
;
background
:
rgba
(
0
,
0
,
0
,
.
28
);
background
:
rgba
(
0
,
0
,
0
,
.
4
);
}
.module_wrapper
>
.wrapper
{
...
...
@@ -299,10 +299,11 @@ section {
}
.explanation_container
{
border
:
none
;
top
:
30px
;
height
:
30px
;
background
:
rgb
a
(
0
,
0
,
0
,
.2
8
);
padding
:
7
px
;
background
:
rgb
(
38
,
38
,
3
8
);
padding
:
8
px
;
font-size
:
12px
;
}
...
...
js/module/array2d.js
浏览文件 @
f982dfae
...
...
@@ -100,7 +100,7 @@ Array2DTracer.prototype = $.extend(true, Object.create(Tracer.prototype), {
case
'
notify
'
:
if
(
step
.
v
)
{
var
$row
=
this
.
$table
.
find
(
'
.mtbl-row
'
).
eq
(
step
.
x
);
$row
.
find
(
'
.mtbl-cell
'
).
eq
(
step
.
y
).
text
(
TracerUtil
.
refine
Number
(
step
.
v
));
$row
.
find
(
'
.mtbl-cell
'
).
eq
(
step
.
y
).
text
(
TracerUtil
.
refine
ByType
(
step
.
v
));
}
case
'
denotify
'
:
case
'
select
'
:
...
...
@@ -130,7 +130,7 @@ Array2DTracer.prototype = $.extend(true, Object.create(Tracer.prototype), {
if
(
Tracer
.
prototype
.
setData
.
apply
(
this
,
arguments
))
{
this
.
$table
.
find
(
'
.mtbl-row
'
).
each
(
function
(
i
)
{
$
(
this
).
children
().
each
(
function
(
j
)
{
$
(
this
).
text
(
TracerUtil
.
refine
Number
(
D
[
i
][
j
]));
$
(
this
).
text
(
TracerUtil
.
refine
ByType
(
D
[
i
][
j
]));
});
});
return
true
;
...
...
@@ -143,7 +143,7 @@ Array2DTracer.prototype = $.extend(true, Object.create(Tracer.prototype), {
for
(
var
j
=
0
;
j
<
D
[
i
].
length
;
j
++
)
{
var
$cell
=
$
(
'
<div class="mtbl-cell">
'
)
.
css
(
this
.
getCellCss
())
.
text
(
TracerUtil
.
refine
Number
(
D
[
i
][
j
]));
.
text
(
TracerUtil
.
refine
ByType
(
D
[
i
][
j
]));
$row
.
append
(
$cell
);
}
}
...
...
js/module/weighted_directed_graph.js
浏览文件 @
f982dfae
...
...
@@ -45,7 +45,7 @@ WeightedDirectedGraphTracer.prototype = $.extend(true, Object.create(DirectedGra
switch
(
step
.
type
)
{
case
'
weight
'
:
var
targetNode
=
this
.
graph
.
nodes
(
this
.
n
(
step
.
target
));
if
(
step
.
weight
!==
undefined
)
targetNode
.
weight
=
TracerUtil
.
refine
Number
(
step
.
weight
);
if
(
step
.
weight
!==
undefined
)
targetNode
.
weight
=
TracerUtil
.
refine
ByType
(
step
.
weight
);
break
;
case
'
visit
'
:
case
'
leave
'
:
...
...
@@ -53,7 +53,7 @@ WeightedDirectedGraphTracer.prototype = $.extend(true, Object.create(DirectedGra
var
targetNode
=
this
.
graph
.
nodes
(
this
.
n
(
step
.
target
));
var
color
=
visit
?
this
.
color
.
visited
:
this
.
color
.
left
;
targetNode
.
color
=
color
;
if
(
step
.
weight
!==
undefined
)
targetNode
.
weight
=
TracerUtil
.
refine
Number
(
step
.
weight
);
if
(
step
.
weight
!==
undefined
)
targetNode
.
weight
=
TracerUtil
.
refine
ByType
(
step
.
weight
);
if
(
step
.
source
!==
undefined
)
{
var
edgeId
=
this
.
e
(
step
.
source
,
step
.
target
);
var
edge
=
this
.
graph
.
edges
(
edgeId
);
...
...
@@ -97,7 +97,7 @@ WeightedDirectedGraphTracer.prototype = $.extend(true, Object.create(DirectedGra
target
:
this
.
n
(
j
),
color
:
this
.
color
.
default
,
size
:
1
,
weight
:
TracerUtil
.
refine
Number
(
G
[
i
][
j
])
weight
:
TracerUtil
.
refine
ByType
(
G
[
i
][
j
])
});
}
}
...
...
js/tracer_manager.js
浏览文件 @
f982dfae
...
...
@@ -189,6 +189,12 @@ var TracerUtil = {
return
value
===
"
Infinity
"
?
Infinity
:
value
;
});
},
refineByType
:
function
(
item
)
{
return
$
.
isNumeric
(
item
)
?
this
.
refineNumber
(
item
)
:
this
.
refineString
(
item
);
},
refineString
:
function
(
string
)
{
return
string
===
''
?
'
'
:
string
;
},
refineNumber
:
function
(
number
)
{
return
number
===
Infinity
?
'
∞
'
:
number
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录