标号法进行可达性分析

1. 问题描述

给定一个图结构,包含n个点,e条边,给定搜索半径100000,求解距离源点 s距离为100000的所有点。这里的距离应该还是指的权值。

数据文件"union.txt",格式为:

start_id,end_id,weight,start_x,start_y,end_x,end_y
1,101043,540,567.988263,99.564119,567.988263,100.104119
......

2. 算法策略

对单源最短路径的求解稍加改动即可,实现思路完全一样。搜索过程中,发现某结点权值已经小于等于100000,则输出并记录该结点,因为每个结点可能被松弛多次,需置标记为1避免重复记录。也就是说,如果一个结点最终未被记录,要么不可达,要么在所有松弛过后权值仍大于100000。

结点是按搜索先后顺序记录的。为了验证正确性,将记录的结点ID进行排序并输出,同时直接遍历dist数组,输出权值小于等于100000的ID,比较二者发现结果相等。由此验证结果正确。

3. 代码实现

#include "stdio.h"
#include "windows.h"
#include <vector>
#include <queue>
#include <stack>
#include <ctime>
using namespace std;

#define MAXN 195234 //1 ... 195233
#define MAXW 0x3f3f3f3f //最大权重

typedef struct WNode{
	int id;
	int cur_w;
	bool operator<(const WNode& n)const{
		return cur_w>n.cur_w;
	}
	WNode(int id,int cur_w):id(id),cur_w(cur_w){}
}WNode;

//Graph[i]中存放的是 与i号结点相邻的 结点们的编号j以及对应权重w, Graph[i]={pair<j,w>,...}
vector<pair<int,int> > Graph[MAXN];
bool visit[MAXN];
int path[MAXN];
int dist[MAXN];
int searched[MAXN];
vector<int> ans;

int s; //源点
int searchRadius; //搜索半径
clock_t start,finish;

//读入文件进行初始化
bool Initialize(){
	printf("Input the starting point: ");
	scanf("%d",&s);
	printf("Input the searching radius: ");
	scanf("%d",&searchRadius);

	printf("\nInputing data...\n");
	start=clock();
	FILE* fp=fopen("union.txt","r");
	if(fp==NULL){
		printf("File open error./n");
		return -1;
	}
	int sid,tid,w;
	double sx,sy,tx,ty;
	fscanf(fp,"%*[^\n]%*c");//跳过第一行
	while(true){
		fscanf(fp,"%d,%d,%d,%lf,%lf,%lf,%lf",&sid,&tid,&w,&sx,&sy,&tx,&ty);
		Graph[sid].push_back(make_pair(tid,w));
		if(sid%1000==0){
			printf("\r[%.2f%%]",sid/195233.0*100);
			fflush(stdout);
		}
		if(sid==195233){
			printf("\r[%.2f%%]",sid/195233.0*100);
			finish=clock();
			printf("\nData input successfully.\n");
			printf("Total time is %.2fs.\n",(double)(finish-start)/CLOCKS_PER_SEC);
			break;
		}
	}
	fclose(fp);
	return true;
}

//求解最短路径,将范围内的点输出并保存至文件
void ShortestPath(int s){
	printf("\nPoints in range %d are:\n",searchRadius);
	start=clock();
	FILE* fp=fopen("101.txt","w");

	memset(path,0,sizeof(path));
	memset(visit,0,sizeof(visit));
	memset(dist,MAXW,sizeof(dist));	
	memset(searched,0,sizeof(searched));
	priority_queue<WNode> qu;
	qu.push(WNode(s,0));
	path[s]=0;
	dist[s]=0;

	while(!qu.empty()){
		WNode cur=qu.top();
		qu.pop();
		if(visit[cur.id])continue;
		visit[cur.id]=1;

		for(int i=0;i<Graph[cur.id].size();i++){
			pair<int,int> tmp=Graph[cur.id][i];
			if(!visit[tmp.first]){	//将未访问过的入队
				qu.push(WNode(tmp.first,tmp.second+cur.cur_w));
			}
			if(tmp.second+cur.cur_w < dist[tmp.first]){	//松弛
				dist[tmp.first]=tmp.second+cur.cur_w;
				path[tmp.first]=cur.id;
				//在搜索半径内,且未被搜索过
				if(dist[tmp.first]<searchRadius && searched[tmp.first]==0){
					searched[tmp.first]=1;
					printf("%d ",tmp.first);//输出到屏幕
					fprintf(fp,"%d ",cur.id);//输出到文件
					ans.push_back(tmp.first);//结果记录在ans中
				}
			}
		}
	}
	fclose(fp);
	printf("\n\nPath solved successfully.\n");
	finish=clock();
	printf("Total time is %.2fs.\n\n",(double)(finish-start)/CLOCKS_PER_SEC);
}

int _tmain(int argc, _TCHAR* argv[])
{
	Initialize();
	ShortestPath(s);
	printf("-----To verify the correctness, sort the ID array and print it:-----\n");
	sort(ans.begin(),ans.end());
	for(int i=0;i<ans.size();i++){
		printf("%d ",ans[i]);
	}
	printf("\n-----Compared with the IDs directly from the dist array:-----\n");
	for(int i=1;i<MAXN;i++){
		if(dist[i]<100000 && dist[i]!=0/*去除源点本身*/){
			printf("%d ",i);
		}
	}
	printf("\n");
	return 0;
}

4. 运行结果

设定源点101,搜索半径100000,得到范围内结点ID,并验证正确性。

技术选型 【后端】:Java 【框架】:springboot 【前端】:vue 【JDK版本】:JDK1.8 【服务器】:tomcat7+ 【数据库】:mysql 5.7+ 项目包含前后台完整源码。 项目都经过严格调试,确保可以运行! 具体项目介绍可查看博主文章或私聊获取 助力学习实践,提升编程技能,快来获取这份宝贵的资源吧! 在当今快速发展的信息技术领域,技术选型是决定一个项目成功与否的重要因素之一。基于以下的技术栈,我们为您带来了一份完善且经过实践验证的项目资源,让您在学习和提升编程技能的道路上事半功倍。以下是该项目的技术选型和其组件的详细介绍。 在后端技术方面,我们选择了Java作为编程语言。Java以其稳健性、跨平台性和丰富的库支持,在企业级应用中处于领导地位。项目采用了流行的Spring Boot框架,这个框架以简化Java企业级开发而闻名。Spring Boot提供了简洁的配置方式、内置的嵌入式服务器支持以及强大的生态系统,使开发者能够更高效地构建和部署应用。 前端技术方面,我们使用了Vue.js,这是一个用于构建用户界面的渐进式JavaScript框架。Vue以其易上手、灵活和性能出色而受到开发者的青睐,它的组件化开发思想也有助于提高代码的复用性和可维护性。 项目的编译和运行环境选择了JDK 1.8。尽管Java已经推出了更新的版本,但JDK 1.8依旧是一种成熟且稳定的选择,广泛应用于各类项目中,确保了兼容性和稳定性。 在服务器方面,本项目部署在Tomcat 7+之上。Tomcat是Apache软件基金会下的一个开源Servlet容器,也是应用最为广泛的Java Web服务器之一。其稳定性和可靠的性能表现为Java Web应用提供了坚实的支持。 数据库方面,我们采用了MySQL 5.7+。MySQL是一种高效、可靠且使用广泛的关系型数据库管理系统,5.7版本在性能和功能上都有显著的提升。 值得一提的是,该项目包含了前后台的完整源码,并经过严格调试,确保可以顺利运行。通过项目的学习和实践,您将能更好地掌握从后端到前端的完整开发流程,提升自己的编程技能。欢迎参考博主的详细文章或私信获取更多信息,利用这一宝贵资源来推进您的技术成长之路!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值