登录
首页 » 数据结构 » Minimum spanning tree problem lingo9.0 procedures used to achieve

Minimum spanning tree problem lingo9.0 procedures used to achieve

于 2022-03-16 发布 文件大小:1.58 kB
0 112
下载积分: 2 下载次数: 1

代码说明:

最小生成树问题用lingo9.0程序实现-Minimum spanning tree problem lingo9.0 procedures used to achieve

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • C++(链表)
    采有C++模板实现的一个数据结构"链表",可以进行增加,删除,修改等20多个成员函数。 本程序适合初学数据结构的朋友们。
    2023-05-07 21:30:03下载
    积分:1
  • 中,发现两个字符串中最大匹配的字符的相关程序
    数据结构中,发现两个字符串中最大匹配的字符的相关程序-Data structure, we found two strings of characters in the biggest match of the relevant procedures
    2022-01-30 18:26:52下载
    积分:1
  • 10名海盗抢得了窖藏的100块金子,并打算瓜分 这些战利品。这是一些讲民主的海盗(当然是他们自己特有的民主),他们的习惯 是按下面的方式进行分配:最...
    10名海盗抢得了窖藏的100块金子,并打算瓜分 这些战利品。这是一些讲民主的海盗(当然是他们自己特有的民主),他们的习惯 是按下面的方式进行分配:最厉害的一名海盗提出分配方案,然后所有的海盗(包 括提出方案者本人)就此方案进行表决。如果50%或更多的海盗赞同此方案,此方 案就获得通过并据此分配战利品。否则提出方案的海盗将被扔到海里,然后下提名 最厉害的海盗又重复上述过程-10 pirates seize a cache of 100 gold, and plan to divide up these spoils of war. This is the democracy of some pirates (of course it was their own unique democracy), their habits are based on the following manner allocation : one of the most powerful pirate proposed distribution plan, and then all the pirates (including the proposal himself) on this program for a vote. If 50% or more of the pirates agreed to this program, this program was adopted and on the allocation of spoils of war. Otherwise, the proposals will be pirates thrown into the sea, and then nominate the most serious piracy repeated this process
    2023-06-24 15:35:03下载
    积分:1
  • 》排序演示系统。实现6种内部排序。包括直接插入排序,希尔排序,冒泡排序,直接选择排序,快速排序,堆排序。。这是我的课程设计!...
    《数据结构》排序演示系统。实现6种内部排序。包括直接插入排序,希尔排序,冒泡排序,直接选择排序,快速排序,堆排序。。这是我的数据结构课程设计!-"data structure" Sort demonstration system. Six species of achieving internal order. Including direct insertion sort, Hill, in order Bubble Sort, direct selection, in order of Quick Sort, heap sort. . This is my data structure course design!
    2022-10-15 23:55:03下载
    积分:1
  • DELPHI processing data on the use EXCEL, it would be imported into the database...
    关于用DELPHI处理EXCEL数据,将它导入进数据库和从数据库导出到EXCEL文件,对初学者很有帮助。-DELPHI processing data on the use EXCEL, it would be imported into the database and exported to the EXCEL file from the database, useful for the beginner.
    2022-06-28 10:50:26下载
    积分:1
  • 算符有限分析法 //程序功能: //根算符优先分析法,将表达式进行语法分析,判断一个表达式是否正确。 //文法:E→E+E E...
    算符有限分析法 //程序功能: //根据算符优先分析法,将表达式进行语法分析,判断一个表达式是否正确。 //文法:E→E+E E-E E*E E/E (E) i // 其中i为无符号整数-operator limited analysis// procedural functions :// operator under priority analysis, to conduct regular expression syntax analysis, judgment, an expression is correct.// Grammar : E E E E-E E E* E/E (E) i// for which i unsigned integers
    2022-04-07 04:27:23下载
    积分:1
  • mysql库的软件
    mysql数据库的软件-mysql database software
    2023-03-29 22:45:05下载
    积分:1
  • 嵌入式库支持传统的客户机/服务器应用程序
    伯克利DB(libdb)是一种编程工具,提供了嵌入式数据库支持传统的和客户端/服务器应用程序。它包括B+树,队列,线性散列,固定,可变长度记录的访问方法,交易,锁定,测井,共享内存缓存,数据库恢复,和高可用系统复制。DB支持C,C++,Java,PHP,C++ #,和Perl API。它支持关键值对(NoSQL),SQL,及Java对象格式化数据。它可用于各种各样的UNIX平台以及QNX,Android,MAC OS X,和几个品种的Windows伯克利DB(libdb)是一种编程工具,提供了嵌入式数据库支持传统的和客户端/服务器应用程序。它包括B+树,队列,线性散列,固定,可变长度记录的访问方法,交易,锁定,测井,共享内存缓存,数据库恢复,和高可用系统复制。DB支持C,C++,Java,PHP,C++ #,和Perl API。它支持关键值对(NoSQL),SQL,及Java对象格式化数据。它可用于各种各样的UNIX平台以及QNX,Android,MAC OS X和Windows的几个品种,
    2022-04-23 17:20:35下载
    积分:1
  • 用列表实现的队列和栈的算法,用接口和实现的组织。 原来打算一个通用的包含所有算法的接口以及实现集,由于时间问题,只是做了一点点,作为算法和设...
    用列表实现的队列和栈的算法,用接口和实现的结构组织。 原来打算一个通用的包含所有数据结构算法的接口以及实现集,由于时间问题,只是做了一点点,作为数据结构算法和设计思想的一个简单范例以及尝试吧,希望和大家多讨论。 里面附有使用实例,以及可执行文件,适合初学者!-used to achieve the queue list and stack algorithm, Interface and realization of the structure. The original intention of a common data structure contains all the interfaces and algorithms to achieve set, as a matter of time, but only a little, as the algorithm and data structure design of a simple model and try it, and we hope that more discussion. Inside with the use of examples, as well as executable files, suitable for beginners!
    2022-05-18 04:21:47下载
    积分:1
  • 无线实时仓库管理系统 (ADO+ACCESS)
    无线实时仓库管理系统 (ADO+ACCESS)-Wireless real-time warehouse management system (ADO+ ACCESS)
    2022-02-01 00:12:43下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载