
C语言
kuang99csdn
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c语言之单链表的创建和逆置
#include <stdio.h> #include <malloc.h> struct LNode{ int data; struct LNode *next; }; struct LNode *create(int n){ struct LNode *head,*p1,*p2; int i,a; head=NULL; ...原创 2019-09-04 21:47:37 · 314 阅读 · 0 评论 -
C语言之快速排序
#include <stdio.h> #include <stdlib.h> int partion(int arr[],int low,int high){ int pivot; pivot=arr[low]; while(low<high){ while(arr[high]>=pivot&&low<high){ hi...原创 2019-09-04 22:51:38 · 151 阅读 · 0 评论