码迷,mamicode.com
首页 >  
搜索关键字:weight-graph    ( 3个结果
【latex】latex基础
文档边距、间距调整 边距调整 间距调整 整段左右间距调整(左侧2cm,右侧1cm) 字体相关 公式相关 对齐公式: 要给公式加编号,则可用 后续要引用公式,则可使用label 列表 有序列表 无序列表 插入图片 latex对eps格式的图片支持较好,故在引用前一般进行格式转换。 windows命令行 ...
分类:其他好文   时间:2019-12-11 00:05:41    阅读次数:90
Dijkstra(单源最短路算法)
typedef struct graph{ int val; int weight;}graph; graph g[1005][1005],dist[1005];int visit[1005]; void dijkstra(int start,int n) { int min,u; for(int ...
分类:编程语言   时间:2016-10-25 02:00:47    阅读次数:220
python—networkx:根据图的权重画图
#coding:utf-8#!/usr/bin/env python """ An example using Graph as a weighted network. """ __author__ = """Aric Hagberg (hagberg@lanl.gov)""" try: import matplotlib.pyplot as plt except: raise...
分类:编程语言   时间:2015-08-14 19:17:49    阅读次数:772
3条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!