Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
tianyazhichiC
algorithm-visualizer
提交
0a03a153
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看板
提交
0a03a153
编写于
5月 19, 2016
作者:
J
Jason Park
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add Selection Sort
上级
f6fd5293
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
17 addition
and
11 deletion
+17
-11
js/module/array1d.js
js/module/array1d.js
+6
-2
js/module/array2d.js
js/module/array2d.js
+6
-3
js/module/graph.js
js/module/graph.js
+1
-2
js/module/weighted_graph.js
js/module/weighted_graph.js
+3
-3
js/tracer.js
js/tracer.js
+1
-1
未找到文件。
js/module/array1d.js
浏览文件 @
0a03a153
...
...
@@ -17,8 +17,12 @@ Array1DTracer.prototype.setData = function (D) {
};
// Override
Array1DTracer
.
prototype
.
_notify
=
function
(
idx
)
{
Array2DTracer
.
prototype
.
_notify
.
call
(
this
,
0
,
idx
);
Array1DTracer
.
prototype
.
_notify
=
function
(
idx1
,
idx2
)
{
if
(
idx2
===
undefined
)
{
Array2DTracer
.
prototype
.
_notify
.
call
(
this
,
0
,
idx1
);
}
else
{
Array2DTracer
.
prototype
.
_notify
.
call
(
this
,
0
,
idx1
,
0
,
idx2
);
}
};
// Override
...
...
js/module/array2d.js
浏览文件 @
0a03a153
...
...
@@ -59,9 +59,12 @@ Array2DTracer.prototype.setData = function (D) {
return
false
;
};
Array2DTracer
.
prototype
.
_notify
=
function
(
x
,
y
)
{
this
.
pushStep
({
type
:
'
notifying
'
,
x
:
x
,
y
:
y
,
value
:
this
.
D
[
x
][
y
]},
true
);
this
.
pushStep
({
type
:
'
notified
'
,
x
:
x
,
y
:
y
},
false
);
Array2DTracer
.
prototype
.
_notify
=
function
(
x1
,
y1
,
x2
,
y2
)
{
var
second
=
x2
!==
undefined
&&
y2
!==
undefined
;
this
.
pushStep
({
type
:
'
notifying
'
,
x
:
x1
,
y
:
y1
,
value
:
this
.
D
[
x1
][
y1
]},
!
second
);
if
(
second
)
this
.
pushStep
({
type
:
'
notifying
'
,
x
:
x2
,
y
:
y2
,
value
:
this
.
D
[
x2
][
y2
]},
true
);
this
.
pushStep
({
type
:
'
notified
'
,
x
:
x1
,
y
:
y1
},
false
);
if
(
second
)
this
.
pushStep
({
type
:
'
notified
'
,
x
:
x2
,
y
:
y2
},
false
);
};
Array2DTracer
.
prototype
.
_select
=
function
(
sx
,
sy
,
ex
,
ey
)
{
...
...
js/module/graph.js
浏览文件 @
0a03a153
...
...
@@ -37,7 +37,6 @@ GraphTracer.prototype.createRandomData = function (N, ratio) {
else
G
[
i
].
push
((
Math
.
random
()
*
(
1
/
ratio
)
|
0
)
==
0
?
1
:
0
);
}
}
console
.
log
(
G
);
return
G
;
};
...
...
@@ -86,7 +85,7 @@ GraphTracer.prototype.setTreeData = function (G, root) {
// Override
GraphTracer
.
prototype
.
setData
=
function
(
G
)
{
if
(
Tracer
.
prototype
.
setData
.
call
(
this
,
arguments
))
return
true
;
graph
.
clear
();
var
nodes
=
[];
var
edges
=
[];
...
...
js/module/weighted_graph.js
浏览文件 @
0a03a153
...
...
@@ -34,13 +34,12 @@ WeightedGraphTracer.prototype.createRandomData = function (N, ratio, min, max) {
}
}
}
console
.
log
(
G
);
return
G
;
};
// Override
WeightedGraphTracer
.
prototype
.
setData
=
function
(
G
)
{
if
(
Tracer
.
prototype
.
setData
.
call
(
this
,
arguments
))
return
;
if
(
Tracer
.
prototype
.
setData
.
call
(
this
,
arguments
))
return
true
;
graph
.
clear
();
var
nodes
=
[];
...
...
@@ -83,6 +82,8 @@ WeightedGraphTracer.prototype.setData = function (G) {
ratio
:
1
});
this
.
refresh
();
return
false
;
};
GraphTracer
.
prototype
.
_weight
=
function
(
target
,
weight
,
delay
)
{
...
...
@@ -99,7 +100,6 @@ GraphTracer.prototype._leave = function (target, source, weight) {
//Override
WeightedGraphTracer
.
prototype
.
processStep
=
function
(
step
,
options
)
{
console
.
log
(
step
);
switch
(
step
.
type
)
{
case
'
weight
'
:
var
targetNode
=
graph
.
nodes
(
n
(
step
.
target
));
...
...
js/tracer.js
浏览文件 @
0a03a153
...
...
@@ -32,7 +32,7 @@ Tracer.prototype.createRandomData = function (arguments) {
Tracer
.
prototype
.
setData
=
function
(
arguments
)
{
var
data
=
JSON
.
stringify
(
arguments
);
if
(
lastData
==
data
)
return
true
;
if
(
last
Module
==
this
.
module
&&
last
Data
==
data
)
return
true
;
lastData
=
data
;
return
false
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录