选择V-S中的点加入S时用了贪心思想,即求d[]中legth最小且未被标记(未加入加入S)的点。

一点都没优化的实现:

 import java.lang.reflect.Array;

 /**
* Created by yueli on 2018/10/14.
*/
public class Dijkstra {
boolean mark[]=new boolean[5];
int v[][]={{0,10,-1,30,100}, {-1,0,50,-1,-1},{-1,-1,0,-1,10},{-1,10,20,0,60},{-1,-1,-1,-1,0}};
class Dist{
public int pre;
public int length;
public Dist(){}
public Dist(int pre,int length){
this.pre=pre;
this.length=length;
}
}
int maxInt=0xfffffff;
public Dist D[]=new Dist[5];
boolean AllMarked(){
for(int i=0;i<mark.length;i++)
if(!mark[i])
return false;
return true;
}
void dijkstra(final int s){
for(int i=0;i<5;i++) {
D[i]=new Dist();
D[i].pre = s;
D[i].length = v[s][i];
mark[i]=false;
}
int u=s;
mark[s]=true;
while (!AllMarked()){
int min=maxInt;
for(int i=0;i<5;i++)
if(!mark[i]&&D[i].length>0&&D[i].length<min){
min=D[i].length;
u=i;
}
System.out.print("{+"+u+"} ");
printD();
if(min==maxInt)break;
mark[u]=true;
for(int i=0;i<5;i++)
if(v[u][i]>0&&(D[i].length>D[u].length+v[u][i]||D[i].length<0)){
D[i].length=D[u].length+v[u][i];
D[i].pre=u;
}
}
}
void printD(){
for(int i=0;i<5;i++){
System.out.print("pre:"+D[i].pre+" length:"+D[i].length+" ");
}
System.out.println();
}
void printV(){
for(int i=0;i<5;i++) {
for (int j = 0; j < 5; j++)
System.out.print(v[i][j]+" ");
System.out.println();
}
}
public static void main(String[] args) {
Dijkstra dijkstra=new Dijkstra();
dijkstra.printV();
dijkstra.dijkstra(0);
}
}
 void dijkstra(final int s){
for(int i=0;i<5;i++) {
D[i]=new Dist();
D[i].pre = s;
D[i].length = v[s][i];
mark[i]=false;
}
int u=s;
mark[s]=true;
while (!AllMarked()){
int min=maxInt;
for(int i=0;i<5;i++)
if(!mark[i]&&D[i].length>0&&D[i].length<min){
min=D[i].length;
u=i;
}
System.out.print("{+"+u+"} ");
printD();
if(min==maxInt)break;
mark[u]=true;
for(int i=0;i<5;i++)
if(v[u][i]>0&&(D[i].length>D[u].length+v[u][i]||D[i].length<0)){
D[i].length=D[u].length+v[u][i];
D[i].pre=u;
}
}
}
0 10 -1 30 100
-1 0 50 -1 -1
-1 -1 0 -1 10
-1 10 20 0 60
-1 -1 -1 -1 0
{+1} pre:0 length:0 pre:0 length:10 pre:0 length:-1 pre:0 length:30 pre:0 length:100
{+3} pre:0 length:0 pre:0 length:10 pre:1 length:60 pre:0 length:30 pre:0 length:100
{+2} pre:0 length:0 pre:0 length:10 pre:3 length:50 pre:0 length:30 pre:3 length:90
{+4} pre:0 length:0 pre:0 length:10 pre:3 length:50 pre:0 length:30 pre:2 length:60 Process finished with exit code 0
#include <iostream>
#include<Queue>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
bool allMarked(bool *mark,const int n){
for(int i=;i<n;i++){
if(!mark[i]){
return false;
}
}
return true;
}
int getFirstUnmarked(bool* mark,const int n){
for(int i=;i<n;i++){
if(!mark[i]){
return i;
}
}
return -;
}
void BFS(bool d[][],const int n,int s){
queue<int>q;
bool *mark=new bool[n];
q.push(s);mark[s]=;
while(!q.empty()||!allMarked(mark,n)){
while(!q.empty()){
s=q.front();
q.pop();
cout<<s<<" ";
for(int i=;i<n;i++){
if(!mark[i]&&d[s][i]){
q.push(i);
mark[i]=;
}
}
}
if(!allMarked(mark,n)){
q.push(getFirstUnmarked(mark,n));
}
}
}
void DFS(bool d[][],const int n,int s){
queue<int>q;
bool *mark=new bool[n];
}
int main(int argc, char *argv[]) {
bool v[][]={
{,,,,},
{,,,,},
{,,,,},
{,,,,},
{,,,,}};
BFS(v,,);
return ;
}

【图论算法】Dijstra&BFS的更多相关文章

  1. 图论算法-最小费用最大流模板【EK;Dinic】

    图论算法-最小费用最大流模板[EK;Dinic] EK模板 const int inf=1000000000; int n,m,s,t; struct node{int v,w,c;}; vector ...

  2. 图论算法-网络最大流【EK;Dinic】

    图论算法-网络最大流模板[EK;Dinic] EK模板 每次找出增广后残量网络中的最小残量增加流量 const int inf=1e9; int n,m,s,t; struct node{int v, ...

  3. 【WIP_S9】图论算法

    创建: 2018/06/01 图的概念 有向边 有向图 无向边 无向图 点的次数: 点连接的边的数量 闭路: 起点和重点一样 连接图: 任意两点之间都可到达 无闭路有向图: 没有闭路的有向图 森林: ...

  4. NOIp 图论算法专题总结 (1):最短路、最小生成树、最近公共祖先

    系列索引: NOIp 图论算法专题总结 (1) NOIp 图论算法专题总结 (2) NOIp 图论算法专题总结 (3) 最短路 Floyd 基本思路:枚举所有点与点的中点,如果从中点走最短,更新两点间 ...

  5. NOIp 图论算法专题总结 (3):网络流 & 二分图 简明讲义

    系列索引: NOIp 图论算法专题总结 (1) NOIp 图论算法专题总结 (2) NOIp 图论算法专题总结 (3) 网络流 概念 1 容量网络(capacity network)是一个有向图,图的 ...

  6. 图论算法-Tarjan模板 【缩点;割顶;双连通分量】

    图论算法-Tarjan模板 [缩点:割顶:双连通分量] 为小伙伴们总结的Tarjan三大算法 Tarjan缩点(求强连通分量) int n; int low[100010],dfn[100010]; ...

  7. tarjan图论算法

    tarjan图论算法 标签: tarjan 图论 模板 洛谷P3387 [模板]缩点 算法:Tarjan有向图强连通分量+缩点+DAGdp 代码: #include <cstdio> #i ...

  8. [算法模版]Tarjan爷爷的几种图论算法

    [算法模版]Tarjan爷爷的几种图论算法 前言 Tarjan爷爷发明了很多图论算法,这些图论算法有很多相似之处(其中一个就是我都不会).这里会对这三种算法进行简单介绍. 定义 强连通(strongl ...

  9. NOIp 图论算法专题总结 (2)

    系列索引: NOIp 图论算法专题总结 (1) NOIp 图论算法专题总结 (2) NOIp 图论算法专题总结 (3) 树链剖分 https://oi-wiki.org/graph/heavy-lig ...

  10. 图论算法(一)存图与STL第六弹——vector容器

    图论算法(一)存图 我发现我的博客阅读量贼低,问小伙伴们,ta们都说这些博客太长了QAQ! 今天来个短亿点的(也短不了多少……) 进入正题,图论究竟是什么? 图论就是给你一张图,让你在这张图上进行各种 ...

随机推荐

  1. MSP430系列单片机笔记00

    嵌入式系统 嵌入式系统(Embedded system),是一种“完全嵌入受控器件内部,为特定应用而设计的专用计算机系统”,根据英国电气工程师协会( U.K. Institution of Elect ...

  2. qt 中使用 c 语言文件

    qt 中直接使用 c 语言文件,c 文件可以直接包含,h 文件包含的时候,需要在 c++ 中添加额外信息,如下: #ifdef __cplusplus extern "C" { # ...

  3. winfrom窗体的透明度

    在VS中创建一个Winform项目,其默认的窗体名称为 Form1. 在VS设计界面中对 Form1 的 Opacity 属性值设置为 50%. 没错,就这样就可以了. 方法2:            ...

  4. Sklearn 速查

    ## 版权所有,转帖注明出处 章节 SciKit-Learn 加载数据集 SciKit-Learn 数据集基本信息 SciKit-Learn 使用matplotlib可视化数据 SciKit-Lear ...

  5. NumPy 数组迭代

    章节 Numpy 介绍 Numpy 安装 NumPy ndarray NumPy 数据类型 NumPy 数组创建 NumPy 基于已有数据创建数组 NumPy 基于数值区间创建数组 NumPy 数组切 ...

  6. GetqueueStatus

    #include "stdafx.h" #include <Windows.h> #include <process.h> #include <ios ...

  7. 14 —— npm —— 基本使用 ——初始化项目

    概念:类似积木,可以组装成各种应用 node 的强大之处 : 可以随意使用这些组件 一,npm 是什么: nodejs 自带的包(模块)管理工具 二,查看 npm 的所有选项 三,查看各个选项的具体作 ...

  8. 通过SQL语句操作Sqlite数据库

    一.数据库的创建 数据库版本为1 //Ctrl+Shift+U:大写 public static final String DATABASE_NAME ="zzw.db"; pub ...

  9. 吴裕雄--天生自然JAVA SPRING框架开发学习笔记:第一个Spring程序

    1. 创建项目 在 MyEclipse 中创建 Web 项目 springDemo01,将 Spring 框架所需的 JAR 包复制到项目的 lib 目录中,并将添加到类路径下,添加后的项目如图 2. ...

  10. Unity 可重复随机数

    出处 https://blogs.unity3d.com/cn/2015/01/07/a-primer-on-repeatable-random-numbers/   (英文原版) http://ww ...