登录
首页 » 数据结构 » 是个HEAP SORT 算法..对一个数列进行HEAP SORT

是个HEAP SORT 算法..对一个数列进行HEAP SORT

于 2022-01-24 发布 文件大小:1.06 kB
0 142
下载积分: 2 下载次数: 1

代码说明:

是个HEAP SORT 算法..对一个数列进行HEAP SORT -is SORT algorithm Rd .. right for a series Rd SORT

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

发表评论

0 个回复

  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • PHP 项目
    f 有代码在您的描述,请使用"插入代码"按钮要插入代码并选择编程语言。这会使你美丽的源代码和 attractive.f 有是在你的描述的代码,请使用"插入代码"按钮要插入代码并选择编程语言。这会使你美丽的源代码和 attractive.f 有是在你的描述的代码,请使用"插入代码"按钮要插入代码并选择编程语言。这会使你美丽的源代码和 attractive.f 有是在你的描述的代码,请使用"插入代码"按钮要插入代码并选择编程语言。这将使您的源代码美丽和有吸引力。
    2023-05-23 12:40:04下载
    积分:1
  • 最短路径,Turboc2下通过编译
    数据结构最短路径,Turboc2下通过编译-the datasructure of the shortest way,run successfully in turbo2.
    2022-01-29 04:48:37下载
    积分:1
  • 二叉树排序实现二叉树的前序、中序、后序排列,以菜单形式出现,代码简洁、易懂易用...
    二叉树排序实现二叉树的前序、中序、后序排列,以菜单形式出现,代码简洁、易懂易用-Binary Tree Binary Tree Sort realize the first order, in sequence, after the sequence order to the menu form, the code is simple and easy to understand and use
    2022-05-12 23:53:53下载
    积分:1
  • 编写了一个关于图的操作的应用程序,可以自己手动输入图的节点和节点的关系,然后可以进行查找节点,求节点的出度和入度,求最短的路径等...
    编写了一个关于图的操作的应用程序,可以自己手动输入图的节点和节点的关系,然后可以进行查找节点,求节点的出度和入度,求最短的路径等-Prepared a map of the operation on the application, you can manually enter their own graph of the relationship between nodes and nodes, and then can search the node, and the out-degree and node-degree, and the shortest path, etc.
    2023-09-01 11:05:05下载
    积分:1
  • examples collection of data structure
    数据结构示例
    2022-02-26 03:14:35下载
    积分:1
  • 这个源程序是关于无向图的邻接表生成和显示的,可以用这个程序实现...
    这个源程序是关于无向图的邻接表生成和显示的,可以用这个程序实现-the source of the undirected graph generation and adjacent table shows, this procedure can be used to achieve
    2022-01-25 21:49:30下载
    积分:1
  • 用VB程序SPK看见
    应用背景源系统,用penunjang科德metode看到使用Visual Basic 6关键技术源科德ini使用马来语pemroragam Visual Basic 6丹,databasenya,MySQL,mengkoneksikannya dibutuhkan XAMPP ODBC连接器
    2022-01-23 10:47:19下载
    积分:1
  • data structure to achieve the java
    数据结构的java实现-data structure to achieve the java
    2023-06-04 02:15:04下载
    积分:1
  • 在 php 中的网站类
    在我的教室里,我学会了如何在 php 中使类。这就像在其他语言中的类。所以我分享我的课堂学习。
    2022-08-07 21:33:00下载
    积分:1
  • 696518资源总数
  • 106235会员总数
  • 12今日下载