数据结构190-添加顶点边代码
2024-05-20 08:56:20 阅读次数:24
javascript,数据结构
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
function Graph(){
this.vertexes=[] //顶点
this.edges=new Dictionay() //边
Graph.prototype.addVertexts=function(v){
this.vertexes.push(v)
this.edges.set(v,[])
}
Graph.prototype.addEdge=function(v1,v2){
this.edges.get(v1).push(v2)
this.edges.get(v1).push(v1)
}
}
</script>
</body>
</html>
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_15460007/6049260,作者:前端导师歌谣,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:# yyds干货盘点 #分享Python网络爬虫过程中编码和解码常用的一个库
下一篇:Gource 方便的软件版本可视化录制工具