图的割点、割线问题

2024-09-09 04:32
文章标签 问题 割线 割点

本文主要是介绍图的割点、割线问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

图的割点问题

邻接矩阵表示图

package com.hyl.algorithm.other;import java.util.Arrays;import com.hyl.algorithm.search.base.SearchIntf;
import com.hyl.algorithm.search.base.SearchIntfFactory;/*** 寻找图的割点* <p>** @author Hyl* @version V 0.1* @since 0.1 2020-07-01 05:15*/
public class CutPoint implements SearchIntf {private ArrayGraph graph;private int n, m, root, start, timestamp;private int[] num;private int[] low;private int[] book;@Overridepublic void init() {//        图//         1//      /    \//     4      3//      \    ///        2//      /   \//     5  -  6n = 6;m = 7;graph = new ArrayGraph(n);graph.addUndirected(1, 3, 1);graph.addUndirected(1, 4, 1);graph.addUndirected(2, 3, 1);graph.addUndirected(2, 4, 1);graph.addUndirected(2, 5, 1);graph.addUndirected(2, 6, 1);graph.addUndirected(5, 6, 1);num = new int[n + 1];low = new int[n + 1];book = new int[n + 1];root = start = 1;timestamp = 0;}@Overridepublic void find() {dfs(start, root);}/*** 深度优先--割点算法* @param cur 当前结点* @param father 父结点*/private void dfs(int cur, int father) {// 儿子数int child = 0;// 时间戳累加timestamp++;// 登记时间戳num[cur] = timestamp;low[cur] = timestamp;// 遍历连通结点for (int i = 1; i <= 6; i++) {// 判断连通if (graph.getPath(cur, i) == 1) {// 时间戳等于0表示没有被访问过if (num[i] == 0) {// 确定父子关系,儿子数加一child++;// 递归dfs(i, cur);// 递归完成,树已经形成,子结点和当前结点中使用能访问的较小时间戳low[cur] = Math.min(low[cur], low[i]);// 判定是否是割点,如果不是根结点,子结点能访问最小时间戳大于等于当前时间戳if (cur != root && low[i] >= num[cur]) {book[cur] = 1;}// 如果是根结点有两个儿子,就是可以确定是割点if (cur == root && child == 2) {book[cur] = 1;}} else if (i != father) {// 没有搜索到就已经有时间戳了,还不是父结点,说明在没有经过父结点就已经访问过,使用最小时间戳low[cur] = Math.min(low[cur], num[i]);}}}}@Overridepublic void print() {graph.print();System.out.println(Arrays.toString(num));System.out.println(Arrays.toString(low));System.out.println(Arrays.toString(book));}public static void main(String[] args) {SearchIntfFactory.produce(CutPoint.class);}}

图的割线问题

邻接表表示图

package com.hyl.algorithm.other;import java.util.Arrays;import com.hyl.algorithm.search.base.SearchIntf;
import com.hyl.algorithm.search.base.SearchIntfFactory;/*** 图的割边问题* <p>** @author Hyl* @version V 0.1* @since 0.1 2020-07-01 12:07*/
public class CutLine implements SearchIntf {private LinkedGraph graph;private int n, m, start, root, timestamp;private int[] num, low;private int[][] lines;private int size;@Overridepublic void init() {//        图//         1//      /    \//     4      3//      \    ///        2//      /   //     5  -  6n = 6;m = 6;graph = new LinkedGraph(n, m);graph.addUndirected(1, 3, 1);graph.addUndirected(1, 4, 1);graph.addUndirected(2, 3, 1);graph.addUndirected(2, 4, 1);graph.addUndirected(2, 5, 1);graph.addUndirected(5, 6, 1);num = new int[n + 1];low = new int[n + 1];lines = new int[m][2];size = 0;root = start = 1;timestamp = 0;}@Overridepublic void find() {dfs(start, root);}private void dfs(int cur, int father) {timestamp++;num[cur] = timestamp;low[cur] = timestamp;int index = graph.first[cur];while (index != -1) {// 没有被访问过if (num[graph.v[index]] == 0) {dfs(graph.v[index], cur);low[cur] = Math.min(low[cur], low[graph.v[index]]);// 相对割点问题,>= 改为 >,表示连父节点也无法返回if (low[graph.v[index]] > num[cur]) {lines[size][0] = cur;lines[size][1] = graph.v[index];size++;}} else if (graph.v[index] != father) {// 可以被访问到,并不是父结点low[cur] = Math.min(low[cur], num[graph.v[index]]);}index = graph.next[index];}}@Overridepublic void print() {graph.printLines();System.out.println(Arrays.toString(num));System.out.println(Arrays.toString(low));for (int i = 0; i < size; i++) {System.out.print("(" + lines[i][0] + "," + lines[i][1] + ")\t");}System.out.println();}public static void main(String[] args) {SearchIntfFactory.produce(CutLine.class);}}

这篇关于图的割点、割线问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1150164

相关文章

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

解决Cron定时任务中Pytest脚本无法发送邮件的问题

《解决Cron定时任务中Pytest脚本无法发送邮件的问题》文章探讨解决在Cron定时任务中运行Pytest脚本时邮件发送失败的问题,先优化环境变量,再检查Pytest邮件配置,接着配置文件确保SMT... 目录引言1. 环境变量优化:确保Cron任务可以正确执行解决方案:1.1. 创建一个脚本1.2. 修

Python 标准库time时间的访问和转换问题小结

《Python标准库time时间的访问和转换问题小结》time模块为Python提供了处理时间和日期的多种功能,适用于多种与时间相关的场景,包括获取当前时间、格式化时间、暂停程序执行、计算程序运行时... 目录模块介绍使用场景主要类主要函数 - time()- sleep()- localtime()- g