图的操作与实现

/ 3,795评论 / 18947阅读 / 0点赞

目录

要求


源代码

若以下显示需要登录,请刷新页面或点击此处下载。


思考

若只求带权有向图G中从顶点i到顶点j的最短路径,如何修改Dijkstra 算法来实现这一功能?

void Dijkstra_way(int first_point)
{
	int* widget_list = new int[map_size];	//记录距离0的长度
	for (int i = map_size; i--;)
	{
		widget_list[i] = INF;
		adjList[i].weight = -1;
	}
	widget_list[first_point] = 0;
	adjList[first_point].weight = 0;
	for (int i = 1; i < map_size; ++i)
		for (int j = map_size; j--;)		//计算距离
			if (adjList[j].weight >= 0)
				for (node* node_p = adjList[j].next_p; node_p != NULL; node_p = node_p->next_p)
					if (widget_list[j] + node_p->weight < widget_list[node_p->data])
					{
						widget_list[node_p->data] = widget_list[j] + node_p->weight;
						adjList[node_p->data].weight = j;
					}
	cout << "<< Dijkstra 最短路径:" << endl;
	coolQueue<int> stack;
	for (int i = 0; i < map_size; ++i)
	{
		for (int j = i; j != first_point;)
		{
			stack.End_push(j);
			j = adjList[j].weight;
		}
		cout << "<< " << first_point;
		for (int pop_int = 0; stack.End_pop(pop_int);)
			cout << " -> " << pop_int;
		cout << endl;
		stack.clear();
	}
	adjList_reflush();
}
  1. Jamesjer说道:

    doxycycline brand name canada: doxycycline 50mg – doxycycline generic

  2. Trinh Henkin说道:

    There’s definately a lot to learn about this subject. I like all the points you made.

  3. imp source说道:

    May I simply say what a relief to uncover someone that genuinely understands what they are talking about on the net. You actually realize how to bring an issue to light and make it important. More people ought to check this out and understand this side of the story. I was surprised you’re not more popular since you surely have the gift.

  4. Jamesjer说道:

    cost of generic clomid pill: cost of cheap clomid – buy generic clomid

  5. ThomasInace说道:

    http://paxloviddelivery.pro/# paxlovid for sale

  6. Jamesjer说道:

    Paxlovid over the counter: paxlovid generic – paxlovid covid

  7. lehenga choli说道:

    Hi there, I do believe your blog might be having web browser compatibility issues. Whenever I look at your web site in Safari, it looks fine however when opening in IE, it has some overlapping issues. I just wanted to give you a quick heads up! Besides that, great site!

  8. Right here is the right blog for anybody who really wants to find out about this topic. You realize so much its almost tough to argue with you (not that I actually would want to…HaHa). You definitely put a fresh spin on a subject that’s been discussed for a long time. Excellent stuff, just wonderful.

  9. ThomasInace说道:

    http://clomiddelivery.pro/# where can i buy generic clomid

  10. Jamesjer说道:

    doxycycline cost in mexico: doxycycline 40 mg cost – doxycycline singapore

  11. iptv说道:

    You made some decent points there. I checked on the web for additional information about the issue and found most individuals will go along with your views on this site.

  12. iptv说道:

    Aw, this was a very nice post. Taking a few minutes and actual effort to generate a great article… but what can I say… I put things off a lot and never manage to get nearly anything done.

  13. ThomasInace说道:

    http://clomiddelivery.pro/# can i get clomid without prescription

  14. iptv说道:

    Aw, this was an incredibly good post. Finding the time and actual effort to make a really good article… but what can I say… I put things off a lot and don’t seem to get nearly anything done.

  15. Jamesjer说道:

    п»їpaxlovid: paxlovid for sale – paxlovid for sale

  16. ThomasInace说道:

    http://amoxildelivery.pro/# amoxicillin 775 mg

  17. Jamesjer说道:

    where buy generic clomid prices: where to buy clomid – where can i get cheap clomid no prescription

  18. porn说道:

    This site really has all of the info I wanted about this subject and didn’t know who to ask.

  19. ThomasInace说道:

    https://doxycyclinedelivery.pro/# doxycycline price comparison

  20. Flum float说道:

    Great info. Lucky me I recently found your blog by chance (stumbleupon). I have bookmarked it for later.

  21. ThomasInace说道:

    https://paxloviddelivery.pro/# paxlovid for sale

  22. Jamesjer说道:

    doxycycline hyclate 100 mg cap: cheap doxycycline online uk – buy doxycycline online no prescription

  23. asbestos说道:

    I was very pleased to discover this great site. I need to to thank you for ones time for this wonderful read!! I definitely loved every bit of it and i also have you bookmarked to check out new things in your blog.

  24. ThomasInace说道:

    http://amoxildelivery.pro/# amoxicillin price without insurance

  25. sex说道:

    I was excited to find this website. I need to to thank you for ones time due to this wonderful read!! I definitely appreciated every little bit of it and i also have you saved as a favorite to check out new stuff on your site.

  26. DavidWaype说道:

    indian pharmacy: pharmacy website india – indian pharmacy paypal

  27. EdwardKib说道:

    https://canadapharmast.com/# canadianpharmacyworld

  28. Charlestaf说道:

    п»їbest mexican online pharmacies reputable mexican pharmacies online mexican pharmaceuticals online

  29. DavidWaype说道:

    canadian pharmacies compare: best canadian pharmacy to order from – pharmacy rx world canada

  30. lease option说道:

    Hello! I just wish to give you a huge thumbs up for your great information you have got right here on this post. I am returning to your blog for more soon.

  31. DavidWaype说道:

    online canadian pharmacy review: canadian drugs – canada drugs online reviews

  32. 백링크 대행说道:

    Your analysis is thorough and well-reasoned.Google Genius

  33. Charlestaf说道:

    pharmacies in mexico that ship to usa buying from online mexican pharmacy mexico drug stores pharmacies

  34. EdwardKib说道:

    http://indiapharmast.com/# online pharmacy india

  35. DavidWaype说道:

    canadian discount pharmacy: canadian pharmacy reviews – canadian pharmacy 365

  36. Michaelpiepe说道:

    safe reliable canadian pharmacy: pet meds without vet prescription canada – canada rx pharmacy world

  37. DavidWaype说道:

    best online pharmacy india: indian pharmacies safe – cheapest online pharmacy india

  38. Charlestaf说道:

    buying prescription drugs in mexico mexican mail order pharmacies reputable mexican pharmacies online

  39. Card game说道:

    Great post! We will be linking to this particularly great post on our site. Keep up the good writing.

  40. DavidWaype说道:

    п»їbest mexican online pharmacies: best online pharmacies in mexico – mexico pharmacy

  41. EdwardKib说道:

    http://foruspharma.com/# mexico pharmacies prescription drugs

  42. Excellent web site you have got here.. It’s difficult to find good quality writing like yours these days. I truly appreciate people like you! Take care!!

  43. Michaelpiepe说道:

    best mail order pharmacy canada: canadian pharmacy online ship to usa – canadian drug pharmacy

  44. DavidWaype说道:

    top 10 online pharmacy in india: world pharmacy india – world pharmacy india

  45. Charlestaf说道:

    prescription drugs canada buy online canadian pharmacy king canadian pharmacy 24h com safe

  46. hishypesports说道:

    Oh my goodness! Awesome article dude! Thank you, However I am encountering problems with your RSS. I don’t know why I cannot join it. Is there anybody having the same RSS problems? Anyone who knows the answer will you kindly respond? Thanks!

  47. Oh my goodness! Impressive article dude! Thanks, However I am encountering troubles with your RSS. I don’t know the reason why I can’t subscribe to it. Is there anybody getting identical RSS issues? Anyone that knows the answer can you kindly respond? Thanx.

  48. tubidy music说道:

    Oh my goodness! Impressive article dude! Thanks, However I am going through problems with your RSS. I don’t know why I can’t join it. Is there anyone else getting similar RSS problems? Anybody who knows the solution will you kindly respond? Thanx!!

  49. May I just say what a comfort to uncover someone that genuinely knows what they are talking about online. You actually know how to bring an issue to light and make it important. More and more people should check this out and understand this side of your story. I can’t believe you’re not more popular since you certainly have the gift.

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注