Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
tianyazhichiC
algorithm-visualizer
提交
21b6d2a4
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看板
提交
21b6d2a4
编写于
5月 19, 2016
作者:
J
Jason Park
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare for other modules
上级
4860059b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
12 addition
and
15 deletion
+12
-15
js/module/graph.js
js/module/graph.js
+7
-11
js/module/weighted_graph.js
js/module/weighted_graph.js
+0
-1
js/script.js
js/script.js
+2
-1
js/tracer.js
js/tracer.js
+3
-2
未找到文件。
js/module/graph.js
浏览文件 @
21b6d2a4
var
s
=
null
,
graph
=
null
,
graphMode
=
null
,
sigmaCanvas
=
null
;
var
s
=
null
,
graph
=
null
,
sigmaCanvas
=
null
;
function
GraphTracer
(
module
)
{
Tracer
.
call
(
this
,
module
||
GraphTracer
);
return
initGraph
(
this
.
module
);
if
(
Tracer
.
call
(
this
,
module
||
WeightedGraphTracer
))
{
initGraph
();
return
true
;
}
return
false
;
}
GraphTracer
.
graphMode
=
"
default
"
;
GraphTracer
.
prototype
=
Object
.
create
(
Tracer
.
prototype
);
GraphTracer
.
prototype
.
constructor
=
GraphTracer
;
...
...
@@ -59,7 +61,6 @@ GraphTracer.prototype.setTreeData = function (G, root) {
if
(
this
.
setData
(
G
,
root
))
return
true
;
var
place
=
function
(
node
,
x
,
y
)
{
console
.
log
(
node
);
var
temp
=
graph
.
nodes
(
n
(
node
));
temp
.
x
=
x
;
temp
.
y
=
y
;
...
...
@@ -190,10 +191,7 @@ GraphTracer.prototype.prevStep = function () {
this
.
step
(
finalIndex
);
};
var
initGraph
=
function
(
module
)
{
if
(
s
&&
graph
&&
graphMode
==
module
.
graphMode
)
return
false
;
graphMode
=
module
.
graphMode
;
var
initGraph
=
function
()
{
$
(
'
.visualize_container
'
).
empty
();
if
(
sigmaCanvas
==
null
)
{
sigmaCanvas
=
$
.
extend
(
true
,
{},
sigma
.
canvas
);
...
...
@@ -232,8 +230,6 @@ var initGraph = function (module) {
drawArrow
(
edge
,
source
,
target
,
color
,
context
,
settings
);
};
sigma
.
plugins
.
dragNodes
(
s
,
s
.
renderers
[
0
]);
return
true
;
};
var
graphColor
=
{
...
...
js/module/weighted_graph.js
浏览文件 @
21b6d2a4
...
...
@@ -6,7 +6,6 @@ function WeightedGraphTracer(module) {
return
false
;
}
WeightedGraphTracer
.
graphMode
=
"
weighted
"
;
WeightedGraphTracer
.
prototype
=
Object
.
create
(
GraphTracer
.
prototype
);
WeightedGraphTracer
.
prototype
.
constructor
=
WeightedGraphTracer
;
...
...
js/script.js
浏览文件 @
21b6d2a4
...
...
@@ -13,6 +13,7 @@ var codeEditor = initEditor('code');
dataEditor
.
on
(
'
change
'
,
function
()
{
try
{
eval
(
dataEditor
.
getValue
());
lastModule
=
_tracer
&&
_tracer
.
module
;
_tracer
=
tracer
;
}
catch
(
err
)
{
}
...
...
@@ -20,7 +21,6 @@ dataEditor.on('change', function () {
});
var
loadFile
=
function
(
category
,
algorithm
,
file
,
explanation
)
{
lastModule
=
null
;
lastData
=
null
;
$
(
'
#explanation
'
).
html
(
explanation
);
dataEditor
.
setValue
(
''
);
...
...
@@ -134,6 +134,7 @@ $('#navigation').click(function () {
$
(
'
#btn_run
'
).
click
(
function
()
{
try
{
eval
(
dataEditor
.
getValue
());
lastModule
=
_tracer
&&
_tracer
.
module
;
_tracer
=
tracer
;
_tracer
.
reset
();
eval
(
codeEditor
.
getValue
());
...
...
js/tracer.js
浏览文件 @
21b6d2a4
...
...
@@ -9,6 +9,8 @@ var Tracer = function (module) {
this
.
traceOptions
=
null
;
this
.
traceIndex
=
-
1
;
this
.
stepCnt
=
0
;
return
lastModule
!=
module
;
};
Tracer
.
prototype
.
resize
=
function
()
{
...
...
@@ -30,8 +32,7 @@ Tracer.prototype.createRandomData = function (arguments) {
Tracer
.
prototype
.
setData
=
function
(
arguments
)
{
var
data
=
JSON
.
stringify
(
arguments
);
if
(
lastModule
==
this
.
module
&&
lastData
==
data
)
return
true
;
lastModule
=
this
.
module
;
if
(
lastData
==
data
)
return
true
;
lastData
=
data
;
return
false
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录