登录
首页 » WINDOWS » 算法与数据结构技术

算法与数据结构技术

于 2004-05-30 发布 文件大小:1628KB
0 164
下载积分: 1 下载次数: 34

代码说明:

  对学数据结构的朋友很帮助(Data on the structure of a friend is to help)

文件列表:

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

发表评论

0 个回复

  • 最小生成树,使用PRIM方法生成最小生成树。
    最小生成树,使用PRIM方法生成最小生成树。-Minimum Spanning Tree, use the PRIM method to generate minimum spanning tree.
    2022-07-11 22:21:06下载
    积分:1
  • 完全由C语言实现的图的相关操作,就是清华大学 书里的图的所有算法的实现...
    完全由C语言实现的图的相关操作,就是清华大学 数据结构书里的图的所有算法的实现-Solely by the C language implementation of related plans to operate, that is, Tsinghua University, the data structure of the book" s map of the implementation of all algorithms
    2023-04-22 07:25:03下载
    积分:1
  • 基本问题C实现
    说明:  一些基本的数据结构问题,用C语言实现,我们学校的上机作业,大家可以参考一下 包括1、Josephu问题 2、一元多项式加法 3、三元组表示的稀疏矩阵的一些操作 4、n阶“魔方”的解法 5、Hanoi塔 6、中缀转后缀 7、二叉排序树 8、快速排序 9、谢尔排序(Some basic data structure problems, implemented in C language, our school homework on the computer, you can refer to it. Including 1, Josephu Problem 2, Polynomial Addition 3, Some Operations of Sparse Matrix Represented by Triple 4. Solution of Magic Cube of order n 5, Hanoi Tower 6, suffix-to-suffix 7, binary sorting tree 8, fast sorting 9, Shell sorting)
    2020-06-22 05:40:01下载
    积分:1
  • Task1-trial--10211281--zly
    描述:足球俱乐部包括球员、普通行政人员。球员有姓名、年龄、能力、年薪、转会费、进球总数、服役年限等重要参数;普通行政人员有姓名、年龄、能力、年薪等参数。你需要给相关管理机构开发一个管理程序,实现对众多足球俱乐部管理的基本功能。具体功能包括: a) 俱乐部的增删改查,俱乐部的属性包括名称、现金、其下人员; b) 可以对所有球员的各项属性进行简单搜索,支持输入多个条件,条件之间用&&连接,例如: i. “年龄不大于25且服役年限大于5年且进球数大于100的球员”,查询表达式:!(@age>25) && @experience>5 && @kick>100 c) 支持球员在不同俱乐部间的买卖,买卖需符合以下条件:作为买方的俱乐部的现金>=球员的转会费,交易完成后,卖方将得到转会费。 要求: d) 必须采用面向对象的方式,使用类组织数据结构,并注意类的继承关系; e) 在题目要求基础上可以自行扩展功能,提供扩实用扩展功能者适当加分(加分不超过5分)。 (Description: Football club including players, general administrative staff. Player name, age, ability, salary, transfer fee, total number of goals, service life and other important parameters ordinary administrative staff name, age, ability, salary and other parameters. You need to give the relevant management agencies to develop a management program to achieve the number of football club management s basic functions. Specific features include: a) the club CRUD, the name of the club s property, including cash, under which personnel b) all players can perform a simple search of the property, supports input multiple conditions with && connection between conditions, for example: i. "Age is not greater than 25 and greater than 5 years service life and goals more than 100 players," query expression:! (@ age> 25) && @ experience> 5 && @ kick> 100 c) Support the players traded between different clubs, the sale subject to the following conditions: As a buyer s club cash> = pl)
    2013-08-20 10:09:29下载
    积分:1
  • 家谱管理系统
    家谱管理系统    任务:实现具有下列功能的家谱管理系统 功能要求: 1). 输入文件以存放最初家谱中各成员的信息,成员的信息中均应包含以下内容: 姓名、出生日期、婚否、地址、健在否、死亡日期(若其已死亡),也可附加其它信息、但不是必需的。 2). 实现数据的存盘和读盘。 3). 以图形方式显示家谱。 4). 显示第n 代所有人的信息。 5). 按照姓名查询,输出成员信息(包括其本人、父亲、孩子的信息)。 6). 按照出生日期查询成员名单。 7). 输入两人姓名,确定其关系。 8). 某成员添加孩子。 9). 删除某成员(若其还有后代,则一并删除)。 10).修改某成员信息。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-01-21 03:00:19下载
    积分:1
  • BFS
    迷宫问题 队列求解 界面还不完善 可以自己添加(Maze problem solving interface queue is not perfect you can add your own)
    2013-12-26 22:08:58下载
    积分:1
  • code
    栈的顺序表示和实现 (1)初始化顺序栈。 (2)插入元素。 (3)删除栈顶元素。 (4)取栈顶元素。 (5)遍历顺序栈。 (6)置空顺序栈。 栈的链式表示和实现 编写一个程序实现链栈的各种基本运算,并在此基础上设计一个主程序,完成如下功能: (1)初始化链栈。 (2)链栈置空。 (3)入栈。 (4)出栈。 (5)取栈顶元素。 (6)遍历链栈。 队列的顺序表示和实现 (1)初始化队列。 (2)建立顺序队列。 (3)入队。 (4)出队。 (5)判断队列是否为空。 (6)取队头元素。 (7)遍历队列。 队列的链式表示和实现 (1)初始化并建立链队列。 (2)入链队列。 (3)出链队列。 (4)遍历链队列。(Sequential Representation and Implementation of Stacks Chain Representation and Implementation of Stack Sequential Representation and Implementation of Queues Chain Representation and Implementation of Queues)
    2019-07-01 11:05:32下载
    积分:1
  • 里面介绍的是严蔚敏《(c语言版)习题集》第二章答案...
    里面介绍的是严蔚敏《数据结构(c语言版)习题集》第二章答案-introduced inside the Yan Wei Min "data structure (c language version) Exercise Book," the second chapter answer
    2022-02-16 05:20:20下载
    积分:1
  • MiniSpanTree
    建立图并求解图的最小二叉树并且输出结果,基础的最小二叉树算法(MiniSpanTree algorithm)
    2019-01-03 18:46:10下载
    积分:1
  • C++,通过堆栈方式实现的表达式求值
    本源代码是通过堆栈的结构,可以实现表达式求值。可以实现如下功能:1.区分括号2.判断表达式的形式是否有错3.判断小数和整数4.根据符号的优先级能够自动给出计算顺序。5.包中含有表达式求值的详细思路PPT。
    2022-02-25 15:53:21下载
    积分:1
  • 696518资源总数
  • 105661会员总数
  • 6今日下载