以下全部来自大佬:http://www.cnblogs.com/jingmoxukong/ https://www.cnblogs.com/jingmoxukong/p/4302718.html https://www.cnblogs.com/jingmoxukong/p/4303279.html Read More
posted @ 2018-08-29 16:54
_KikyoBK
Views(149)
Comments(0)
Diggs(0)
基本思想是,遍历整个数组,每次遍历找出最小的插入到对应的位置,具体的方法是:存在数组array[n],第一次遍历数组得到最小值与array[0]进行交换,第二次遍历数组得到第二小的值与array[1]交换......如此下去,最后的结果是以升序排序。 Read More
posted @ 2018-08-29 16:22
_KikyoBK
Views(155)
Comments(0)
Diggs(0)
静态查找表(Static Search Table):只作查找操作的查找表。 动态查找表(Dynamic Search Table):在查找过程同时会修改元素。 Read More
posted @ 2018-08-29 14:39
_KikyoBK
Views(319)
Comments(0)
Diggs(0)
Q: memset函数的作用,有哪些参数 A: 用来对一段内存空间全部设置为某个字符 memset()函数原型是extern void *memset(void *buffer, int c, int count) buffer:为指针或是数组, c:是赋给buffer的值, count:是buff Read More
posted @ 2018-08-29 08:02
_KikyoBK
Views(179)
Comments(0)
Diggs(0)