文档边距、间距调整 边距调整 间距调整 整段左右间距调整(左侧2cm,右侧1cm) 字体相关 公式相关 对齐公式: 要给公式加编号,则可用 后续要引用公式,则可使用label 列表 有序列表 无序列表 插入图片 latex对eps格式的图片支持较好,故在引用前一般进行格式转换。 windows命令行 ...
分类:
其他好文 时间:
2019-12-11 00:05:41
阅读次数:
90
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
#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