CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 文件格式 搜索资源 - 排序

搜索资源列表

  1. huibianqipaopaixu

    0下载:
  2. 用汇编语言实现 循环程序设计 用汇编语言实现 起泡排序程序-Using assembly language program designed to achieve the cycle of assembly language to achieve foaming sort procedure
  3. 所属分类:File Formats

    • 发布日期:2017-03-30
    • 文件大小:83323
    • 提供者:王金
  1. xscjglxt

    0下载:
  2. 1 学生查询功能:为了方便学生查找成绩等信息,将所有信息按照需要进行分类。这样学生就能很方便的找到自己需要的信息。 2 添加功能:管理员可以通过填写表格的形式输入学生成绩等相关信息。系统可以自动避免重复信息。 3 修改功能:管理员可以对数据库中的信息进行修改。系统能够通过管理员给出的条件查找出所要修改的信息,对修改后的信息进行保存,并自动查找是否是重复信息。 4 删除功能:管理员可以对数据进行删除操作。系统能够通过管理员给出的条件查找出要删除的信息,并提示是否确定删除,如果确定删除,
  3. 所属分类:File Formats

    • 发布日期:2017-04-17
    • 文件大小:51314
    • 提供者:浩浩
  1. paixufangfa

    0下载:
  2. 排序方法的比较-Sort Methods
  3. 所属分类:File Formats

    • 发布日期:2017-04-25
    • 文件大小:49489
    • 提供者:漂泊
  1. b

    0下载:
  2. 在程序中输入数组大小n,通过动态分配内存函数malloc产生一个整型数组,接着输入该数组的n个元数,并使用一个函数对组数进行排序(从小到大,要求用选择法实现)-In the procedure input array size n, through dynamic allocation of memory function malloc generate an integer array, and then enter the array of n-ary number, and use a f
  3. 所属分类:File Formats

    • 发布日期:2017-04-07
    • 文件大小:2451
    • 提供者:zheng yan yu
  1. 55645

    0下载:
  2. 10种软件滤波方法的示例程序 1、限副滤波 /* A值可根据实际情况调整 value为有效值,new_value为当前采样值 滤波程序返回有效的实际值 */ #define A 10 char value char filter() { char new_value new_value = get_ad() if ( ( new_value - value > A ) || ( value - new_value
  3. 所属分类:File Formats

    • 发布日期:2017-04-14
    • 文件大小:2578
    • 提供者:21
  1. license

    0下载:
  2. 用于求解matlab排序问题,求解得效率很高,比一般的方法好哦-Matlab for solving the scheduling problem, to solve a highly efficient method than the average好哦
  3. 所属分类:File Formats

    • 发布日期:2017-04-04
    • 文件大小:18407
    • 提供者:晓晓
  1. VC

    0下载:
  2. 计算机类数据结构课程设计——各种排序方法的实现-Computer data structures curriculum design- to achieve a variety of sorting methods
  3. 所属分类:File Formats

    • 发布日期:2017-03-30
    • 文件大小:98882
    • 提供者:jiangyx
  1. 1

    0下载:
  2. 1).可以输入各个项目的前三名或前五名的成绩; 2).能统计各学校总分, 3).可以按学校编号、学校总分、男女团体总分排序输出; 4).可以按学校编号查询学校某个项目的情况;可以按项目编号查询取得前三或前五名的学校。 -score school
  3. 所属分类:File Formats

    • 发布日期:2017-04-08
    • 文件大小:103745
    • 提供者:kelly
  1. English

    0下载:
  2. 英语词典词汇表(文本文件),按照英文字母排序。-Dictionary of English vocabulary (text file), according to alphabetical order.
  3. 所属分类:File Formats

    • 发布日期:2017-04-09
    • 文件大小:1901514
    • 提供者:YangTze
  1. jidian2

    0下载:
  2. 学生绩点系统 用顺序表 能对学生绩点进行插入、删除、排序以及查找等操作。-Student performance point system
  3. 所属分类:File Formats

    • 发布日期:2017-04-01
    • 文件大小:214614
    • 提供者:LGY
  1. c

    0下载:
  2. 二分法(折半)插入排序:在已排好序的序列中使用二分法查找插入位置,找到后移动其后记录插入新记录。-Dichotomy (binary) insertion sort:In the series have been sequenced use dichotomy search into position,after finding a new record record insertion by moving.
  3. 所属分类:File Formats

    • 发布日期:2017-04-07
    • 文件大小:562
    • 提供者:刘丹
  1. paixu2

    0下载:
  2. 数据结构排序算法的比较,起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序、堆排序-Comparison of data structures sorting algorithm, bubble sort, direct insertion sort, simple selection sort, quick sort, Shell sort, Heap sort
  3. 所属分类:File Formats

    • 发布日期:2017-03-31
    • 文件大小:2424
    • 提供者:张森
  1. 2

    0下载:
  2. 1) 实现对两个文件数据进行合并,生成新文件3.txt 2) 抽取出三科成绩中有补考的学生并保存在一个新文件4.txt 3) 对合并后的文件3.txt中的数据按总分降序排序(至少采用两种排序方法实现) 4) 输入一个学生姓名后,能查找到此学生的信息并输出结果(至少采用两种查找方法实现) 5) 要求使用结构体,链或数组等实现上述要求. 6) 采用多种方法且算法正确者,可适当加分. -1) The realization of the merger of the two
  3. 所属分类:File Formats

    • 发布日期:2017-04-13
    • 文件大小:2216
    • 提供者:asdf
  1. 1

    0下载:
  2. 调研并熟悉数据排序的基本概念、排序算法与工作规程; 学习Visual C++中的图形化界面设计技术; 通过实际编程加深对基础知识的理解,提高实践能力; 学习开发资料的收集与整理,学会撰写课程设计报告。-Research and become familiar with the data sorted the basic concepts of sorting algorithm and work order to learn Visual C++ in the graphical
  3. 所属分类:File Formats

    • 发布日期:2017-04-16
    • 文件大小:75086
    • 提供者:曹宣驰
  1. sort-algorithm

    0下载:
  2. 实现简单的排序,如冒泡排序,选择排序等,并能计算排序时间-Simple sorting, and sorting time can be calculated
  3. 所属分类:File Formats

    • 发布日期:2017-04-04
    • 文件大小:704
    • 提供者:Feng
  1. AromaSal

    0下载:
  2. 某石油公司的销售报表,计算销售额,净利等。使用COBOL编写。涉及表结构。排序。-An oil company sales reports, sales profit calculation, etc..The use of COBOL prepared.Involving the table structure.sort。
  3. 所属分类:File Formats

    • 发布日期:2017-03-30
    • 文件大小:3795
    • 提供者:craig
  1. Student-management-system

    0下载:
  2. 利用c++语言开发的学生管理系统,自动读取文件,并进行插入,排序等功能-Student management system
  3. 所属分类:File Formats

    • 发布日期:2017-04-03
    • 文件大小:171274
    • 提供者:严康文
  1. duipaixu

    0下载:
  2. 利用JS语言实现堆排序 并生成了flash动画演示 可在浏览器上运行-JS language heap sort, and generate a flash animation
  3. 所属分类:File Formats

    • 发布日期:2017-04-09
    • 文件大小:1456
    • 提供者:田鹏
  1. 10060323

    0下载:
  2. 搜索1.建立有序表,然后进行二分查找; 2.建立二叉排序树,然后进行查找。-A search. To establish an ordered list, and then binary search 2. Binary sort tree, and then search.
  3. 所属分类:File Formats

    • 发布日期:2017-04-09
    • 文件大小:534525
    • 提供者:曹小保
  1. SORT

    0下载:
  2. 各种常见的数据结构中的排序算法,对排序学习者有很大的帮助-Sorting algorithm in a variety of common data structures, a great help to sort learners
  3. 所属分类:File Formats

    • 发布日期:2017-04-13
    • 文件大小:1845
    • 提供者:诸葛弩
« 12 3 »
搜珍网 www.dssz.com