图的操作与实现

/ 3,803评论 / 18964阅读 / 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. Hi, ich habe Ihre Webseite bei der Suche nach Fernbus Hamburg im Internet gefunden. Schauen Sie doch mal auf meiner Seite vorbei, ich habe dort viele Testberichte zu den aktuellen Windeleimern geschrieben.

  2. i am very picky about baby toys, so i always choose the best ones.,

  3. You made some decent points there. I looked on the web with the problem and discovered most people will go in addition to with all your site.

  4. I liked up to you’ll receive carried out proper here. The sketch is attractive, your authored material stylish. nonetheless, you command get bought an nervousness over that you would like be handing over the following. in poor health no doubt come more formerly once more as exactly the similar nearly very often inside case you shield this increase.

  5. This one is an inspiration personally to uncover out far more associated to this subject. I need to confess your knowledge prolonged my sentiments as well as I’m going to proper now take your feed to remain updated on each coming blog posts you would possibly presumably create. You are worthy of thanks for a job perfectly performed!

  6. Good blog! I really love how it is easy on my eyes and the data are well written. I am wondering how I could be notified when a new post has been made. I’ve subscribed to your RSS which must do the trick! Have a great day!

  7. Hi there, I found your blog via Google while looking for a related topic, your site came up, it looks great. I’ve bookmarked it in my google bookmarks.

  8. Only wanna input on few general things, The website layout is perfect, the written content is rattling superb .

  9. gas safety cert说道:

    My husband and i are already truly contented in which Raymond can deal with their inspections via the suggestions he obtained while using the web site. Now it is and also again complicated to simply be offering info that many some other individuals have recently been marketing. We realize we have the writer saying thanks to with this. The type of illustrations you have made, the easy internet site course-plotting, the particular romances you help to engender ?ê? it’s every thing remarkable, and it is making our child and us feel that this issue is pleasurable, and that’s amazingly necessary. Appreciate all!

  10. Heya i am for the first time here. I found this board and I find It truly useful & it helped me out much. I hope to give something back and aid others like you aided me.

  11. Hi there, I found your blog via Yahoo while searching for a related topic, your web site came up, it looks great. I’ve bookmarked it in my bookmarks.

  12. In my opinion, when the ratio concerning daily life being a lever, values is its own “point”, while using proper rocker, it might become a amazing someone.

  13. Hello, you used to write excellent, but the last several posts have been kinda boring?K I miss your tremendous writings. Past few posts are just a little bit out of track! come on!

  14. Wholesale Cheap Handbags Are you ok basically repost this on my small site? Quite possibly to provide credit where it can be due. Have a very great day!

  15. Dzięki za szczegółowy przewodnik po SEO. Bardzo pouczający!

  16. Świetne wskazówki dotyczące znalezienia wiarygodnych usług SEO. Dzięki!

  17. Ten blog dostarczył mi dużo jasności na temat SEO. Dzięki!

  18. Dzięki za szczegółowy przewodnik po tym, czego można oczekiwać podczas wdrażania SEO.

  19. Edwardtes说道:

    Pin up 306 casino: Pin-Up Casino – Pin Up Azerbaycan ?Onlayn Kazino

  20. Edwardtes说道:

    Pin Up Azerbaycan ?Onlayn Kazino: ?Onlayn Kazino – Pin Up Azerbaycan ?Onlayn Kazino

  21. Bardzo pomocny post o SEO! Będę to udostępniać znajomym i rodzinie.

  22. Edwardtes说道:

    Pin Up Azerbaycan: Pin-up Giris – Pin up 306 casino

  23. Edwardtes说道:

    Pin Up Azerbaycan: pin-up kazino – Pin up 306 casino

  24. Edwardtes说道:

    pin-up kazino: pin-up 141 casino – Pin Up Azerbaycan ?Onlayn Kazino

  25. Dzięki za szczegółowy przewodnik po tym, czego można oczekiwać podczas wdrażania SEO.

  26. Ten blog wyjaśnia wiele zawiłości SEO. Dzięki!

  27. Edwardtes说道:

    Pin Up: pin-up kazino – Pin Up Kazino ?Onlayn

  28. Edwardtes说道:

    Pin Up Azerbaycan: Pin Up Azerbaycan – Pin up 306 casino

  29. Dziękuję za podkreślenie znaczenia bezpieczeństwa w SEO.

  30. Doceniam skupienie się na zagrożeniach SEO i potrzebie ich usunięcia.

  31. Edwardtes说道:

    Pin-Up Casino: Pin-Up Casino – ?Onlayn Kazino

  32. Edwardtes说道:

    Pin Up Azerbaycan: Pin-up Giris – Pin Up

  33. Ten post był bardzo pomocny w zrozumieniu zawiłości SEO.

  34. Edwardtes说道:

    Pin Up Azerbaycan ?Onlayn Kazino: Pin-Up Casino – pin-up kazino

  35. Dzięki za praktyczne porady dotyczące radzenia sobie z SEO.

  36. Doceniam skupienie się na zagrożeniach SEO i potrzebie ich usunięcia.

  37. Dzięki za podkreślenie znaczenia profesjonalnego podejścia do SEO.

  38. tubidy download说道:

    I have to thank you for the efforts you have put in writing this website. I’m hoping to view the same high-grade blog posts from you in the future as well. In fact, your creative writing abilities has inspired me to get my own website now 😉

  39. we always buy our dog supplies at least once a week from the local pet store. ;;

  40. Doceniam nacisk na zdrowie i bezpieczeństwo w kontekście SEO.

发表回复

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