会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
晨阳
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2018年9月24日
SPFA 模板
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 using namespace std; 10 #define inf 0x3f3f3f3f 11 struct A 12 { 13 int ed; 14 int po...
阅读全文
posted @ 2018-09-24 15:40 ~~晨阳
阅读(216)
评论(0)
推荐(0)
编辑
单链表
摘要: #include <cstdio>#include <cstdlib>#include <iostream>using namespace std;struct List{ int date; List *next;};void creat(List *head) //往头指针后加,倒序{ List
阅读全文
posted @ 2018-09-24 14:51 ~~晨阳
阅读(117)
评论(0)
推荐(0)
编辑