FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
javascript-algorithms/src/data-structures/graph/GraphEdge.js at master · karimtn/javascript-algorithms · GitHub
karimtn
/
javascript-algorithms
Public
forked from
trekhleb/javascript-algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
javascript-algorithms
/
src
/
data-structures
/
graph
/
GraphEdge.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (35 loc) · 761 Bytes
Breadcrumbs
javascript-algorithms
/
src
/
data-structures
/
graph
/
GraphEdge.js
Copy path
File metadata and controls
40 lines (35 loc) · 761 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
export
default
class
GraphEdge
{
/**
*
@param
{
GraphVertex
} startVertex
*
@param
{
GraphVertex
} endVertex
*
@param
{
number
} [weight=1]
*/
constructor
(
startVertex
,
endVertex
,
weight
=
0
)
{
this
.
startVertex
=
startVertex
;
this
.
endVertex
=
endVertex
;
this
.
weight
=
weight
;
}
/**
*
@return
{
string
}
*/
getKey
(
)
{
const
startVertexKey
=
this
.
startVertex
.
getKey
(
)
;
const
endVertexKey
=
this
.
endVertex
.
getKey
(
)
;
return
`
${
startVertexKey
}
_
${
endVertexKey
}
`
;
}
/**
*
@return
{
GraphEdge
}
*/
reverse
(
)
{
const
tmp
=
this
.
startVertex
;
this
.
startVertex
=
this
.
endVertex
;
this
.
endVertex
=
tmp
;
return
this
;
}
/**
*
@return
{
string
}
*/
toString
(
)
{
return
this
.
getKey
(
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL