《算法》第四章部分程序 part 1
▶ 书中第四章部分程序,加上自己补充的代码,包含无向 / 有向图类
● 无向图类
- package package01;
- import java.util.NoSuchElementException;
- import edu.princeton.cs.algs4.In;
- import edu.princeton.cs.algs4.StdOut;
- import edu.princeton.cs.algs4.Bag;
- import edu.princeton.cs.algs4.Stack;
- public class class01
- {
- private static final String NEWLINE = System.getProperty("line.separator");
- private final int V;
- private int E;
- private Bag<Integer>[] adj;
- public class01(int inputV)
- {
- if (inputV < 0)
- throw new IllegalArgumentException("\n<Constructor> V < 0.\n>");
- V = inputV;
- E = 0;
- adj = (Bag<Integer>[]) new Bag[V];
- for (int v = 0; v < V; v++)
- adj[v] = new Bag<Integer>();
- }
- public class01(In in)
- {
- try
- {
- V = in.readInt();
- if (V < 0)
- throw new IllegalArgumentException("\n<Constructor> V < 0.\n>");
- adj = (Bag<Integer>[]) new Bag[V];
- for (int v = 0; v < V; v++)
- adj[v] = new Bag<Integer>();
- int E = in.readInt();
- if (E < 0)
- throw new IllegalArgumentException("\n<Constructor> E < 0.\n>");
- for (int i = 0; i < E; i++)
- {
- int v = in.readInt();
- int w = in.readInt();
- //validateVertex(v);
- //validateVertex(w);
- addEdge(v, w);
- }
- }
- catch (NoSuchElementException e)
- {
- throw new IllegalArgumentException("\n<Constructor> parameter error.\n");
- }
- }
- public class01(class01 G)
- {
- this(G.V()); // "this" 等价于 class01,即构造函数
- E = G.E();
- for (int v = 0; v < G.V(); v++) // 使用栈来遍历原图邻接表,遍历栈时建立新图的邻接表
- {
- Stack<Integer> edgeStack = new Stack<Integer>();
- for (int w : G.adj[v])
- edgeStack.push(w);
- for (int w : edgeStack)
- adj[v].add(w);
- }
- }
- public int V()
- {
- return V;
- }
- public int E()
- {
- return E;
- }
- public void addEdge(int v, int w)
- {
- //validateVertex(v);
- //validateVertex(w);
- adj[v].add(w);
- adj[w].add(v);
- E++;
- }
- public Iterable<Integer> adj(int v) // 生成迭代器
- {
- //validateVertex(v);
- return adj[v];
- }
- public int degree(int v) // 计算顶点的度数
- {
- //validateVertex(v);
- return adj[v].size();
- }
- public String toString() // toString 接口
- {
- StringBuilder s = new StringBuilder();
- s.append(V + " vertices, " + E + " edges " + NEWLINE);
- for (int v = 0; v < V; v++)
- {
- s.append(v + ": ");
- for (int w : adj[v])
- s.append(w + " ");
- s.append(NEWLINE);
- }
- return s.toString();
- }
- /*
- private void validateVertex(int v)
- {
- if (v < 0 || v >= V)
- throw new IllegalArgumentException("\n<validateVertex> v < 0 || v >= V.\n>");
- }
- */
- public static void main(String[] args)
- {
- In in = new In(args[0]); // 输入第一行为顶点数,第二行为边数,以后每行为一条边的两个顶点
- class01 G = new class01(in);
- StdOut.println(G);
- }
- }
● 有向图类,只注释了与无向图不同的地方
- package package01;
- import java.util.NoSuchElementException;
- import edu.princeton.cs.algs4.In;
- import edu.princeton.cs.algs4.StdOut;
- import edu.princeton.cs.algs4.Bag;
- import edu.princeton.cs.algs4.Stack;
- public class class01
- {
- private static final String NEWLINE = System.getProperty("line.separator");
- private final int V;
- private int E;
- private Bag<Integer>[] adj;
- private int[] indegree; // 每个顶点的入度
- public class01(int inputV)
- {
- if (inputV < 0)
- throw new IllegalArgumentException("\n<Constructor> V < 0.\n>");
- V = inputV;
- E = 0;
- adj = (Bag<Integer>[]) new Bag[V];
- for (int v = 0; v < V; v++)
- adj[v] = new Bag<Integer>();
- indegree = new int[V]; // 初始化入度
- }
- public class01(In in)
- {
- try
- {
- V = in.readInt();
- if (V < 0)
- throw new IllegalArgumentException("\n<Constructor> V < 0.\n>");
- adj = (Bag<Integer>[]) new Bag[V];
- for (int v = 0; v < V; v++)
- adj[v] = new Bag<Integer>();
- int E = in.readInt();
- if (E < 0)
- throw new IllegalArgumentException("\n<Constructor> E < 0.\n>");
- for (int i = 0; i < E; i++)
- {
- int v = in.readInt();
- int w = in.readInt();
- addEdge(v, w);
- }
- indegree = new int[V]; // 初始化入度
- }
- catch (NoSuchElementException e)
- {
- throw new IllegalArgumentException("\n<Constructor> parameter error.\n");
- }
- }
- public class01(class01 G)
- {
- this(G.V());
- E = G.E();
- for (int v = 0; v < G.V(); v++)
- {
- Stack<Integer> edgeStack = new Stack<Integer>();
- for (int w : G.adj[v])
- edgeStack.push(w);
- for (int w : edgeStack)
- adj[v].add(w);
- }
- for (int v = 0; v < V; v++) // 拷贝所有顶点的入度
- indegree[v] = G.indegree(v);
- }
- public int V()
- {
- return V;
- }
- public int E()
- {
- return E;
- }
- public void addEdge(int v, int w)
- {
- //validateVertex(v);
- //validateVertex(w);
- adj[v].add(w);
- indegree[w]++; // 添加变的时候只添加一次,并更新重点的入度
- E++;
- }
- public Iterable<Integer> adj(int v)
- {
- //validateVertex(v);
- return adj[v];
- }
- public int outdegree(int v) // 顶点的出度
- {
- //validateVertex(v);
- return adj[v].size();
- }
- public int indegree(int v) // 顶点的入度
- {
- //validateVertex(v);
- return indegree[v];
- }
- public class01 reverse() // 反向图
- {
- class01 reverse = new class01(V); // 把复制构造函数改成不用栈即可
- for (int v = 0; v < V; v++)
- {
- for (int w : adj(v))
- reverse.addEdge(w, v);
- }
- return reverse;
- }
- public String toString()
- {
- StringBuilder s = new StringBuilder();
- s.append(V + " vertices, " + E + " edges " + NEWLINE);
- for (int v = 0; v < V; v++)
- {
- s.append(v + ": ");
- for (int w : adj[v])
- s.append(w + " ");
- s.append(NEWLINE);
- }
- return s.toString();
- }
- /*
- private void validateVertex(int v)
- {
- if (v < 0 || v >= V)
- throw new IllegalArgumentException("\n<validateVertex> v < 0 || v >= V.\n>");
- }
- */
- public static void main(String[] args)
- {
- In in = new In(args[0]); // 输入第一行为顶点数,第二行为边数,以后每行依次为一条边的起点和终点
- class01 G = new class01(in);
- StdOut.println(G);
- }
- }
《算法》第四章部分程序 part 1的更多相关文章
- 《算法》第四章部分程序 part 19
▶ 书中第四章部分程序,包括在加上自己补充的代码,有边权有向图的邻接矩阵,FloydWarshall 算法可能含负环的有边权有向图任意两点之间的最短路径 ● 有边权有向图的邻接矩阵 package p ...
- 《算法》第四章部分程序 part 18
▶ 书中第四章部分程序,包括在加上自己补充的代码,在有权有向图中寻找环,Bellman - Ford 算法求最短路径,套汇算法 ● 在有权有向图中寻找环 package package01; impo ...
- 《算法》第四章部分程序 part 16
▶ 书中第四章部分程序,包括在加上自己补充的代码,Dijkstra 算法求有向 / 无向图最短路径,以及所有顶点对之间的最短路径 ● Dijkstra 算法求有向图最短路径 package packa ...
- 《算法》第四章部分程序 part 15
▶ 书中第四章部分程序,包括在加上自己补充的代码,Kruskal 算法和 Boruvka 算法求最小生成树 ● Kruskal 算法求最小生成树 package package01; import e ...
- 《算法》第四章部分程序 part 14
▶ 书中第四章部分程序,包括在加上自己补充的代码,两种 Prim 算法求最小生成树 ● 简单 Prim 算法求最小生成树 package package01; import edu.princeton ...
- 《算法》第四章部分程序 part 10
▶ 书中第四章部分程序,包括在加上自己补充的代码,包括无向图连通分量,Kosaraju - Sharir 算法.Tarjan 算法.Gabow 算法计算有向图的强连通分量 ● 无向图连通分量 pack ...
- 《算法》第四章部分程序 part 9
▶ 书中第四章部分程序,包括在加上自己补充的代码,两种拓扑排序的方法 ● 拓扑排序 1 package package01; import edu.princeton.cs.algs4.Digraph ...
- 《算法》第四章部分程序 part 17
▶ 书中第四章部分程序,包括在加上自己补充的代码,无环图最短 / 最长路径通用程序,关键路径方法(critical path method)解决任务调度问题 ● 无环图最短 / 最长路径通用程序 pa ...
- 《算法》第四章部分程序 part 13
▶ 书中第四章部分程序,包括在加上自己补充的代码,图的前序.后序和逆后续遍历,以及传递闭包 ● 图的前序.后序和逆后续遍历 package package01; import edu.princeto ...
- 《算法》第四章部分程序 part 12
▶ 书中第四章部分程序,包括在加上自己补充的代码,图的几种补充数据结构,包括无向 / 有向符号图,有权边结构,有边权有向图 ● 无向符号图 package package01; import edu. ...
随机推荐
- eval 日期对象
js中,eval相当于python中的eval(表达式)和exec(代码)的集合. var d = new Date(); #申明一个新的日期对象,方便之后调用,它的方法getDate();ge ...
- paramiko 实现ssh登录和sftp登录
简单ssh登录 import paramiko ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddP ...
- http网站上传文件大小问题【没测试过】
web.config <httpRuntime maxRequestLength="" executionTimeout=""/> IIS 请求筛选 ...
- <亲测>CentOS 7.3下Node.js 8.6安装配置(含NPM以及PM2)
CentOS 7.3下Node.js 8.6安装配置 2017年09月30日 14:12:02 阅读数:2245更多 个人分类: Nodejs 版权声明:本文为博主原创文章,未经博主允许不得转载. ...
- Javascript之数组遍历
一.遍历数组的几种方式 1.for...in遍历数组,会遍历数组的索引和数组原型上的对象 2.for循环直接遍历 3.迭代器:forEach(遍历数组中所有的值,并忽略回 ...
- Mongod服务器安装
第一步下载mongodb 目前最新版本:3.4.4 第二步安装vc_redist.x64 服务器安装可能会需要到,如果没有出现以下错误不需要安装 --------------------------- ...
- JVM异常之:直接内存溢出
示例: package com.dxz.jvm; import java.lang.reflect.Field; import sun.misc.Unsafe; /** * @Described:直接 ...
- VC的function类说明 -- 继续
我在之前的随笔中介绍了function如何保存参数,如何实现调用相关知识.对于一个函数对象或者函数指针来说,应该很容易理解.不过对于如何在function中保存类的成员函数,这个还是值得一说的. 还是 ...
- Redis登陆服务器和批量删除指定的key
ps -ef |grep redis cd /opt/app/redis/bin ./redis-cli -h 192.168.0.67 -p 7001 -a 'hub2c!Redis'./redis ...
- Android重打包+重新签名工具Apktool Box
可实现apk反编译+重新打包+重新签名,界面如下 : 部分引用自开源代码:http://github.com/Bu4275/AutoAPKTool