图的操作与实现

/ 1,799评论 / 8008阅读 / 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. RandallGuesE说道:

    buy cytotec pills: buy cytotec over the counter – Cytotec 200mcg price

  2. WilliamRen说道:

    http://lisinopril.network/# zestoretic 20 12.5 mg

  3. WilliamRen说道:

    http://cytotec.club/# cytotec buy online usa

  4. Davidfrify说道:

    tamoxifen therapy common side effects of tamoxifen tamoxifen reviews

  5. RandallGuesE说道:

    tamoxifen and ovarian cancer: aromatase inhibitors tamoxifen – tamoxifen for sale

  6. RandallGuesE说道:

    buy cytotec pills: cytotec abortion pill – buy cytotec in usa

  7. Davidfrify说道:

    cost of propecia prices cost of cheap propecia online get generic propecia prices

  8. RonaldSwobe说道:

    https://finasteride.store/# cost of propecia without prescription

  9. WilliamRen说道:

    https://ciprofloxacin.tech/# buy cipro online without prescription

  10. WilliamRen说道:

    https://lisinopril.network/# best price for lisinopril 20 mg

  11. Davidfrify说道:

    buy cytotec pills п»їcytotec pills online buy cytotec online fast delivery

  12. RandallGuesE说道:

    cost of generic propecia: get propecia – generic propecia prices

  13. RandallGuesE说道:

    tamoxifen therapy: lexapro and tamoxifen – tamoxifen for gynecomastia reviews

  14. RonaldSwobe说道:

    https://finasteride.store/# cost cheap propecia

  15. WilliamRen说道:

    https://finasteride.store/# order propecia tablets

  16. Davidfrify说道:

    buy cytotec in usa cytotec pills buy online buy cytotec online

  17. WilliamRen说道:

    http://cytotec.club/# buy cytotec

  18. Davidfrify说道:

    buy cipro online antibiotics cipro ciprofloxacin 500 mg tablet price

  19. RandallGuesE说道:

    tamoxifen warning: tamoxifen alternatives – nolvadex 20mg

  20. RandallGuesE说道:

    buy cytotec over the counter: buy cytotec over the counter – cytotec pills online

  21. Davidfrify说道:

    cheap propecia for sale get generic propecia without insurance cost generic propecia without rx

  22. WilliamRen说道:

    http://lisinopril.network/# lisinopril 5 mg brand name

  23. Davidfrify说道:

    zestoretic 20 25mg lisinopril brand name australia zestril 5 mg price

  24. WilliamRen说道:

    http://nolvadex.life/# aromatase inhibitor tamoxifen

  25. RonaldSwobe说道:

    http://lisinopril.network/# lisinopril 10 mg coupon

  26. RandallGuesE说道:

    lisinopril 10 mg tablet cost: generic for prinivil – zestril lisinopril

  27. RandallGuesE说道:

    cipro for sale: ciprofloxacin generic – cipro online no prescription in the usa

  28. Davidfrify说道:

    where can i buy cipro online ciprofloxacin generic ciprofloxacin 500mg buy online

  29. WilliamRen说道:

    http://finasteride.store/# order cheap propecia without insurance

  30. Davidfrify说道:

    lisinopril 25mg tablets lisinopril 1 mg lisinopril 3

  31. WilliamRen说道:

    https://cytotec.club/# cytotec abortion pill

  32. Davidfrify说道:

    get generic propecia without rx get generic propecia without rx buy propecia online

  33. RandallGuesE说道:

    cost of lisinopril 10 mg: how much is lisinopril 5 mg – lisinopril pill

  34. Davidfrify说道:

    buy cheap propecia without insurance cheap propecia prices buying cheap propecia without a prescription

  35. WilliamRen说道:

    http://ciprofloxacin.tech/# cipro 500mg best prices

  36. WilliamRen说道:

    https://nolvadex.life/# tamoxifen lawsuit

  37. RonaldSwobe说道:

    https://lisinopril.network/# buy lisinopril without prescription

  38. RandallGuesE说道:

    buy cytotec over the counter: buy misoprostol over the counter – cytotec pills online

  39. Davidfrify说道:

    buy misoprostol over the counter cytotec pills buy online cytotec abortion pill

  40. RandallGuesE说道:

    lisinopril 30: lisinopril 40 coupon – cost of lisinopril

  41. Davidfrify说道:

    buy generic propecia pill buy cheap propecia without insurance buy propecia pills

  42. WilliamRen说道:

    http://cytotec.club/# cytotec pills buy online

  43. WilliamRen说道:

    https://cytotec.club/# purchase cytotec

  44. Davidfrify说道:

    tamoxifen for breast cancer prevention raloxifene vs tamoxifen buy nolvadex online

  45. RandallGuesE说道:

    cost of cheap propecia: propecia without prescription – cheap propecia without insurance

  46. Davidfrify说道:

    tamoxifen for breast cancer prevention tamoxifen alternatives tamoxifen effectiveness

  47. RandallGuesE说道:

    ciprofloxacin over the counter: ciprofloxacin 500mg buy online – buy generic ciprofloxacin

  48. Davidfrify说道:

    tamoxifen 20 mg tablet nolvadex vs clomid alternative to tamoxifen

  49. WilliamRen说道:

    https://finasteride.store/# generic propecia without a prescription

  50. WilliamRen说道:

    https://ciprofloxacin.tech/# antibiotics cipro

发表回复

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