登录
首页 » Unix_Linux » C-language-source-code

C-language-source-code

于 2013-01-04 发布 文件大小:48KB
0 179
下载积分: 1 下载次数: 1

代码说明:

  算法导论之排序C语言源代码,几种排序法源码(Introduction to Algorithms Sort C language source code)

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

发表评论

0 个回复

  • C
    C语言常见的错误类型描述,还比较的全,适合刚刚入门的人调试程序用(failed to translate)
    2013-05-05 11:21:34下载
    积分:1
  • 操作系统中的文件是通过文件目录项来管理的,为了管理和查找的方便,按层次把文件目录项组织起来,同一层上的目录成该层上的目录,第一层为根目录,一下为各层子目录。...
    操作系统中的文件是通过文件目录项来管理的,为了管理和查找的方便,按层次把文件目录项组织起来,同一层上的目录构成该层上的目录,第一层为根目录,一下为各层子目录。 假设以一串字符代表一个文件,每个字符表示一个记录。 在建立上述目录结构的基础上,建立相应的管理系统并要求完成以下各项操作: 1. 一次建立各个文件 2. 查访两个用户的所有文件 3. 查访用户sun 是否有文件AB 4. 删除用户sun的文件AC,然后在分别查访两个用户的全部文件,检查是否已经删除文件AC 5. 撤销用户sun,并检查是否被删除 6. 删除用户sun的全部文件,然后在撤销sun用户,在查访用户sun, 检查其是否已被撤销。 在建立一个新用户及新用户的两个文件,然后查该两个用户的所有文件-operating system, the paper is to document catalog items to the management, in order to manage and facilitate the search, according to the document level directory entries organizations, the same floor on which constitute the directory contents on the floor, the first layer of the root directory to look for levels of subdirectories. Assuming that the representative of a string of characters, each character expressed a record. In establishing the directory structure on the basis of the establishment of a corresponding system of management and asked to accomplish the following : 1. Once established two separate files. Visits to the two users of all three docum
    2022-01-26 01:47:05下载
    积分:1
  • 工资管理系统
    在一家公司,工资是所有财务记录的......一名雇员的薪金,以及系统和软件处理薪金所需的费用的总和
    2023-01-20 07:50:03下载
    积分:1
  • 人事管理系统VC源码 登录的用户和密码均为RSK
    人事管理系统VC源码 登录的用户和密码均为RSK-Personnel Management System VC FOSS users and login passwords are RSK
    2023-08-16 14:00:03下载
    积分:1
  • 封装了库的基本操作,再也不用为写esql的程序烦恼了,很方便
    封装了数据库的基本操作,再也不用为写esql的程序烦恼了,很方便-package of the basic operation of the database, no longer have to write esql procedures trouble. Very convenient
    2022-07-20 20:37:26下载
    积分:1
  • suanfa
    自己编写的floyd 最短距离求解程序。实用简单。gcc (Floyd shortest distance to write your own solver. Practical and simple. gcc)
    2012-09-02 14:59:02下载
    积分:1
  • db .* (pronounced dee
    db.* (pronounced dee-be star) is an advanced, high performance, small footprint embedded database for open source operating systems.-db .* (pronounced dee-be star) is an advanc ed, high performance, small footprint embedded database for open sou rce operating systems.
    2023-07-22 00:35:03下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(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
  • 这个程序主要是实现了一个组的组,当用户输入一个女的时候…
    本程序主要是实现数组的全排列,当用户输入一个数字串时,程序将打印出该数字串的所有组合-This program is mainly to achieve an array of full array, when a user enter a number string, the program will print out the number of strings of all the combinations
    2022-02-06 08:30:32下载
    积分:1
  • Astar
    matalab的算法,是一种最短路径的求解()
    2008-05-03 00:46:59下载
    积分:1
  • 696518资源总数
  • 105958会员总数
  • 18今日下载