首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
插入排序_C语言_数组
】的更多相关文章
插入排序_C语言_数组
插入排序_C语言_数组 #include <stdio.h> void insertSort(int *); int main(int argc, const char * argv[]) { //初始化数组 int a[10] = {1, 6, 8, 9, 3, 2, 4, 5, 7, 0}; //乱序 printf("乱序\n"); for (int i = 0; i < 10; i ++ ) { printf("%d ",a[i]); } p…
选择排序_C语言_数组
选择排序_C语言_数组 #include <stdio.h> void select_sort(int *); int main(int argc, const char * argv[]) { //初始化数组 int a[10] = {1, 6, 8, 9, 3, 2, 4, 5, 7, 0}; //乱序 printf("乱序\n"); for (int i = 0; i < 10; i ++ ) { printf("%d ",a[i]); }…
快速排序_C语言_数组
快速排序_C语言_数组 #include <stdio.h> void quickSort(int *, int, int); int searchPos(int *, int, int); int main(int argc, const char * argv[]) { //定义乱序数组 int a[10] = {9, 3, 4, 6, 1, 2, 7, 8, 5, 0}; //排序前输出: printf("乱序:\n"); for (int i = 0; i <…
冒泡排序_C语言_数组
冒泡排序_C语言_数组 #include <stdio.h> //冒泡排序 小->大 void sort(int * pArray, int len); int main(int argc, const char * argv[]) { //定义一个乱序的数组 int array[10] = {1, 9, 6, 8, 2, 5, 3, 4, 0, 7}; int i = 0; //调用冒泡排序方法 sort(array, 10); //输出排序后的数组元素 for (i = 0; i &…
温故而知新_C语言_递归
递归. 是的,差不多就是这种感觉.上面就是类似递归的显示表现. 2017 10 24更新: 递归这个问题放了很久.也没有写.大概是自己还没有好好理解吧. 在这里写下自己理解的全部. 一 何为递归. 字面意义,分开看. 有传递.有回归.或者归还. 浅显的理解就是调用自己. 那么递归可以调用自己,肯定是有一些约束的条件. 不然就会无限次的调用自己.这个很好理解吧? 说一个小示例来讲解一下何为递归. 一个房子里面有一个男人在玩着一个房子模型,房子模型里面还有一个房子,房子里面有一个男人,男人在玩着一…
温故而知新_C语言_前缀++(--)和后缀++(--)
前缀++(--)和后缀++(++)是有区别的. 再单独使用的时候是没有区别的,都是自身递增或者递减1. 但是综合使用起来会一样吗? 下面的例子都是++,替换成--也是一样,道理都是一样的. 请先看下面例子: #include<stdio.h> int main(void) { ,b=; a++; //后缀++ ++b; //前缀++ printf("a++ is %d\n",a ); printf(" ++b is %d",b ); } 出来的结果都是1…
数据结构_C语言_二叉树先序、中序、后序遍历
# include <stdio.h> # include <stdlib.h> typedef struct BiTreeNode { char data; struct BiTreeNode * lchild; struct BiTreeNode * rchild; }BTNode, * pBTNode; pBTNode createBTree(); void assign(pBTNode * ppn, char data, pBTNode plc, pBTNode prc);…
数据结构_C语言_单链表
# include <stdio.h> # include <stdbool.h> # include <malloc.h> typedef int DataType; typedef struct Node { DataType data; struct Node * next; } Node; /* 需要完成的所有基本操作 */ void InitList_Head(Node **); void InitList_Tail(Node **); int Length(…
【书籍下载链接】_1_第一轮_C语言书籍
各位朋友,如果您觉得下载的电子书,看的还可以,请购买纸质版的图书,如果您觉得 您下载的书,不值得一看请在下载后直接删除. Windows汇编:http://dl.vmall.com/c0jk1v970a 计算机_Thunderbird.pdf:http://dl.vmall.com/c0law8h3tz 计算机_C语言核心技术_中文版.pdf:http://dl.vmall.com/c0ntj98jx6 计算机_C语言程序设计_现代方法_中.pdf:http://dl.vmall.com/c0a…
2.2 C语言_实现数据容器vector(排序功能)
上一节我们说到我们己经实现了一般Vector可以做到的自动扩充,告诉随机存取,那么现在我们需要完成vector的一个排序的功能. 排序算法我们网上一百度哇~~!很常见的就有8大排序算法: 1.选择排序 2.冒泡排序 3.插入排序 4.快速排序 5.归并排序 6.桶排序 7.堆排序 8.希尔排序 具体的思想本猿就不展开讲啦,现在C语言应用的场景大多数在服务器和嵌入式设备,服务器数据量大,嵌入式设备资源有限 两者是对时间复杂度和空间负责度的两个极端. 一开始我想要优化堆排序,使得堆排序的空间复杂度减…