资源列表
[数据结构常用算法] flash
说明:数据结构中有关查找和排序,以flash格式表现算法是如何实现的。-Data structure relating to search and sort to flash format of the performance of algorithm is how to achieve.<wang feidie> 在 2025-06-14 上传 | 大小:167kb | 下载:0
[数据结构常用算法] tanxinsuanfa
说明:本文章介绍了贪心算法的过程及运用C语言的实现-This article describes the process of greedy algorithm and the realization of the use of C language<玛丽> 在 2025-06-14 上传 | 大小:272kb | 下载:0
[数据结构常用算法] lianbiaopaixu
说明:2008软件公司笔试题:两个链表插入排序,VC编写-2008 software company T questions: Two linked list insertion sort, VC preparation<chen> 在 2025-06-14 上传 | 大小:877kb | 下载:0
[数据结构常用算法] paixu
说明:2008软件公司面试题:排序大全:简单选择排序、冒泡排序、选择排序、shell排序、快速排序、插入排序、堆排序(从小到大)、归并排序(利用递归)-2008 software companies face questions: Sort Guinness: simple choice to sort, bubble sort, select sort, shell sort, quick sort, insert sort HEAPSORT (from small to large), Mergi<chen> 在 2025-06-14 上传 | 大小:221kb | 下载:0
[数据结构常用算法] Insert_sort
说明:void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(int i=n-2 i>=0 i--) { if(temp<a[i]) a[i+1]=a[i] else break } a[i+1]=temp }-void insert_sort (int* a, int n) (if<Katherine> 在 2025-06-14 上传 | 大小:218kb | 下载:0