FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AlgorithmVisualizer/algorithm/sorting/bucket/basic/data.js at master · AnnPin/AlgorithmVisualizer · GitHub
AnnPin
/
AlgorithmVisualizer
Public
forked from
algorithm-visualizer/algorithm-visualizer
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AlgorithmVisualizer
/
algorithm
/
sorting
/
bucket
/
basic
/
data.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (22 loc) · 455 Bytes
Breadcrumbs
AlgorithmVisualizer
/
algorithm
/
sorting
/
bucket
/
basic
/
data.js
Copy path
File metadata and controls
24 lines (22 loc) · 455 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
var
maxValue
=
100
;
var
arraySize
=
10
;
var
numBuckets
=
5
;
//initialize array values
var
array
=
Array1D
.
random
(
arraySize
,
0
,
maxValue
-
1
)
;
var
buckets
=
[
]
;
var
bucketsCount
=
[
]
;
var
sortedArray
=
[
]
;
for
(
let
i
=
0
;
i
<
arraySize
;
i
++
)
{
if
(
i
<
numBuckets
)
{
buckets
[
i
]
=
[
]
;
bucketsCount
[
i
]
=
0
;
}
sortedArray
[
i
]
=
0
;
}
var
D
=
[
array
,
bucketsCount
,
sortedArray
]
;
var
tracer
=
new
Array2DTracer
(
)
;
tracer
.
_setData
(
D
)
;
Back
|
FazBrowse Home
|
New Git URL