搜索资源列表
JavaSortingMethod
- java 排序,冒泡排序,快速排序,选择排序,插入排序,堆排序,归并排序等等!-java ranking, bubble sort, quick sort, select Sort, insert sequencing, heap sort, merge sort, and so on!
dwqdsort111
- 1)实现以下常用的内部排序算法并对它们的时间效率进行比较: 必做(6种):起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序、堆排序; 选做:折半插入、二路归并、基数排序等等; 2)函数首部要求:void XXXXSort(char **list, int len, int n, int *c, int *s) 其中: a) XXXXSort为排序函数名,具体如下: 起泡排序BubbleSort 直接插入排序InsertSort 简单选择排序Sele
glxgears-opengl
- 这是一个Linux下的OpenGL的程序,是一个测试你的Linux是否可以顺利运行2D、3D的测试软件。 这个程序弹出一个窗口,里面有三个转动的齿轮,屏幕将显示出每五秒钟转动多少栅,所以这是一个合理的性能测试。 窗户是可以缩放的,栅数多少极大程度上依赖于窗口的大小。如果你的显示卡够好,而且你的驱动程序也配合得很好,那齿轮就跑得越快。-Permission is hereby granted, free of charge, to any person obtaining a * co
Tyrant
- 一个比较简单的ttserver类文件,。Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation t
WordTest
- 利用VC6创建、修改WORD文档,添加、删除表格、读取表格信息、合并单元格、拆分单元格等。-Using VC6 to create, modify WORD document, add, delete form, read the form information, merge cells, split the cell and so on.
merge
- 自然合并排序算法 与归并算法MergeSort相比 没有递归的过程 是按照数组的大小依次进行合并来实现排序的算法-Natural merge sort algorithm and merging algorithm compared MergeSort not recursive process is in accordance with the size of the array in order to achieve the sort merge algorithm
Sort
- VC实现。各种排序算法,插入排序,选择排序,交换排序,快速排序,希尔排序,归并排序等。-VC implementation. Various sorting algorithms, insertion sort, selection sort, exchange sort, quick sort, Hill sort, merge sort and so on.
Merge_Sort
- 一个合并排序算法。是按照《算法导论》书中的讲解来写的。-A plan to merge sorting algorithm. In accordance with the
somesortalgorithm
- 本程序实现了通常我们所用的各种排序算法,是基于1--10000的随机生成数排序,有冒泡排序,合并排序,基数排序,计数排序等算法实现。-This procedure has usually used in a variety of sorting algorithm is based on 1- 10000 sort the randomly generated number, a bubble sort, merge sort, Radix Sort, Counting Sort algorit
lovePet
- 实用功能主要有:文件分割与合并、文件加解密(新增)、控件注册(新增)、 显示/恢复桌面(新增)、定时关机(新增)、开机自启动(新增)、显示/隐藏宠物、 定制自我情话、暂停情话播放、两岸通--简繁字体互转、窃取星号密码、位图转 换为文本、文件隐藏到位图中、发送邮件、光驱管理、系统管理等等。-Practical features include: split and merge files, file encryption and decryption (new), the contro
CSort
- 用C++6.0编写,采用分治法求解快速排序和归并排序所花的时间并输出,能够具体地让大家明白时间复杂度这一抽象的概念-Using C++6.0 development, the use of sub-rule method to sort quick sort and merge the time spent and output, specifically so that everyone can understand the time complexity of this abstract c
DES
- DES算法实验报告和代码 1.输入名字,需8个字母,不足的补叉,多余的舍去 2.将字符按ASC2码值转化为二进制,存在数值(指针)中 3.对明文做IP置换(函数) 4.将转换后的数值分成两组,赋给L0,R0,执行下列运算L1—R0,R1-L0.....重复16轮 5.将结果L0R0合并至一个数值,做IP输出-DES algorithm and code an experimental report. Enter the name of eight letters take l
paixu
- 各种排序算法,如冒泡,交换,插入,选择,归并,快速等等!-A variety of sorting algorithms, such as bubble, exchange, insert, select, merge, quick, and so!
Merge
- 功能:将多光谱图像和全色图像融合,得到更丰富的细节信息。 全色光学图像空间细节的表现能力好,DCT变换后其主要特征集中在高频区域,而多光谱图像光谱成分丰富细腻,其主要特征集中于低频区域,因此对全色光学图像和多光谱图像分别进行DCT变换,通过适当的选择全色光学图像的高频部分和光谱图像的低频部分进行融合,进行逆DCT变换,就得到象素域的融合图像,为了增强融合效果,突出局部区域特征,采用对图像分块的原则。 -Function: the multi-spectral image and pan
MERGE-SORT
- 合并排序是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。 合并排序法是将两个(或两个以上)有序表合并成一个新的有序表,即把待排序序列分为若干个子序列,每个子序列是有序的。然后再把有序子序列合并为整体有序序列。 将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。若将两个有序表合并成一个有序表,称为2-路归并。合并排序也叫归并排序。-Merge Sort is an efficient sort
Merge
- 给定k 个排好序的序列s , s , , sk 1 2 , 用 2 路合并算法将这k 个序列合并成一个序列。 假设所采用的 2 路合并算法合并 2 个长度分别为m和n的序列需要m + n -1次比较。试设 计一个算法确定合并这个序列的最优合并顺序,使所需的总比较次数最少-Given k sorted sequence s, s, sk 1 2 2-way merge algorithm these the k sequences merged into
Histogram-Equalization
- 直方图均衡方法的基本原理是:对在图像中像素个数多的灰度值(即对画面起主要作用的灰度值)进行展宽,而对像素个数少的灰度值(即对画面不起主要作用的灰度值)进行归并。从而达到清晰图像的目的。-Histogram equalization method of the basic principle is: the more the number of pixels in the image gray value (i.e., play a major role in the picture gray v
maxfieldsum
- 用分治法解决最大子段和问题,利用了递归和合并,使问题能够简易求解-Solve the problem with the largest sub-segment and divide and conquer method, the use of recursion and merge so that the problem can be solved simple
Araxis-Merge
- 一款对比软件工具merge.exe,不用安装,直接点击使用,功能强大,尤其喜欢文件夹比较能在中间部分看到文件中有多少不同。用了蛮久感觉很好用,所以分享给大家。-A contrast software tools merge. Exe, need not install, click use directly, powerful functions, especially like folder comparison to see how many files in the middle sect
FastReportMerge
- FastReport向下合并单元格打印 Fastreport只提供了抑制重复值属性(SuppressRepeated),它不能直接把框线给自动合并,这样虽然隐藏了重复值,但显示上就还是有点不太美观,所以就专门研究出了这样的一个方法。网上虽然也有许多类似的解决方法,不是过于复杂,就是操作起来很麻烦,这是最最简洁通用的一个写法,所以与大家一起分享-Merge cell print down FastReport provides only the repetition s