搜索资源列表
sort
- 通过一组相同的数据,对六种不同排序方法(冒泡排序、快速排序、直接插入排序、希尔排序、简单选择排序、堆排序、二路归并排序)的数据元素的比较和移动的次数做一个比较,并对结果作出简单分析-Through a group of the same data, sort of six different methods (bubble sort, quick sort, direct insertion sort, Hill sort, simple selection sort HEAPSORT, Roa
paixu
- 实现各种内部排序,包括: 1、直接插入 2、简单选择 3、快排 4、堆排序 输入待排数字后,菜单选择排序方式,部分排序有主要排序步骤。 -Implementation of various internal sort, including: one, directly into the 2, 3 easy selection, fast row 4, HEAPSORT input figure to be ranked, the menu select Sort by,
sort
- 设计一个Visual C++程序实现几种排序方法,要求输入一组数组之后,可以算出其几种排序的结果,即,依次为:直接插入排序,希尔排序,冒泡排序,快速排序,简单选择排序,堆排序,归并排序。 -To design a Visual C++ procedures for implementation of several sorting methods, for the importation of a group of the array, you can calculate the n
046
- 046 选择排序 简单明了干净的代码。。容易理解,调试,是不可多得的好代码-good code 5
sequence
- 1. 实现简单的选择排序、直接插入排序和冒泡排序。 2. 实现希尔排序算法。 3. 实现快速排序算法。 4. 在主函数中涉及一个简单的菜单,分别测试上述的算法。 -1. The realization of a simple choice to sort, direct and Bubble Sort Insertion Sort. 2. The realization of Hill sorting algorithm. 3. The realization of
xuejiguanli
- 自编的简单学籍管理系统 【问题描述】 该系统要求对一个文件中所存储的学生数据进行各种常规操作,如:排序、查找、计算、显示等功能。通过此课题,熟练掌握文件、数组、指针的各种操作,以及一些算法思想的应用,实现一个简单的学生管理系统。 【功能要求】 (1)学生信息包括: 学号,姓名,性别,出生(年,月,日),三门课成绩和总分( 数学, 英语, C语言, 总分)。 (2)需要实现的功能 1)建立学生信息 3)按总分递减选择排序,并显示按总分排序后学生信息 4)按学号
Sort-algorithm
- 几种内部排序算法总结!(冒泡排序、快速排序、直接插入排序、拆半插入排序、简单选择排序) -Several internal sort algorithm summary! (bubble sort, quick sort, direct insertion sort, tear open half insertion sort, simple choice sort)
Sort
- 折半插入排序、冒泡排序、快速排序、简单选择排序、归并排序堆排序在一个大程序中解决-Binary insertion sort, bubble sort, quick sort, simple selection sort, merge sort heap sort in a large program to solve
gezhongpaixufangfabijiao
- 简单选择排序、快速排序、直接插入排序、堆排序、希尔排序、冒泡排序等六种。 -Simple selection sort, quick sort, direct insertion sort, heap sort, shell sort, bubble sort, and six.
Comparison-sorting-algorithm
- 利用随机函数产生N(N>1000)个随机整数,利用起泡排序,直接插入排序,简单选择排序,快速排序,希尔排序,堆排序6种排序方法进行排序,比较的指标为关键字的比较次数和关键字的移动次数,以取得直观感受,多次试验,同时统计在完全正序、完全逆序情况下的关键字比较次数和移动次数,与无序情况进行对比。-Random function N (N> 1000) random integers using bubble sort, insertion sort directly, simple se
paper
- 冒泡排序、直接插入插排序、简单选择排序、快速排序、希尔排序、堆排序的简单实现与比较-Bubble sort, insertion sort directly into simple selection sort, quick sort, shell sort, heap sort of simple implementation and comparison
suanfabijiao
- 对常用的内部排序算法进行比较:直接插入排序、简单选择排序、冒泡排序、快速排序、希尔排序(在教科书中,各种内部排序算法的时间复杂度分析结果只给出了算法执行时间的阶,或大概执行时间。试通过随机数据比较各算法的关键字比较次数和关键字移动次数,以取得直观感受。)-Internal sorting algorithm commonly used for comparison: direct insertion sort, simple selection sort, bubble sort, quick
sort
- 软件技术基础中的简单数据排序,包括选择排序,冒泡排序,快速排序等等。-Software technical basis of simple data sort, including selection sort, bubble sort, quick sort, and so on.
Paixu
- 排序代码,包括简单插入,简单选择,冒泡排序,欢迎大家批评指正-Sortcode,which includes insert_sort,select_sort,bubble_sort.welcome to chat.
answer
- 数据结构8.9章的作业题答案。如:对于给定的一组关键字:83,40,63,13,84,35,96,57,39,79 分别画出用直接插入排序、冒泡排序、简单选择排序、快速排序、堆排序对其进行操作的各趟结果。 -Data structure answer homework questions
sort-Algorithm-in-c
- c语言实现的经典排序算法,譬如冒泡、快速排序、简单选择、堆排序、直接插入、希尔排序、归并排序,基数排序等,都能运行-The classic sort algorithm C language, such as bubble, quick sort, heap sort, simple selection, direct insertion, Hill sort, merge sort, radix sort, can run
sorting-algorithm
- 描述了4种简单的排序算法,包括选择排序,插入排序,冒泡排序和快速排序算法。-describe four sorting algorithm,include select sorting,insert sorting,bubble sorting and quick sorting.
xuanzeandcharu
- 选择排序法和直接插入排序法的简单实现代码-Select sort method and direct insertion sort simple implementation code
rank
- 排序是编程语言里最基本的方法,目前典型的排序方法有:冒泡排序、快速排序、选择排序、简单插入排序、二分插入排序、希尔排序、归并排序等。-Sorting is the programming language in the most basic way, the current typical sort method: bubble sort, quick sort, selection sort, simple insertion sort, binary insertion sort, Hill
SortTotal
- 排序汇总(数据结构) 插入排序(折半,直接) shell 快速排序(冒泡,快速) 选择(简单选择,堆排序)-Sorting Summary- Data Structure Insertion Sort (binary insertion directly into, shell) Quick Sort (bubbling, fast) Selection Sort (simple choice, heap sort)