
C/C++
@东辰
不知道自己不知道,知道自己不知道,知道自己知道,不知道自己知道。
展开
-
C++
HelloWorld!c#include<stdio.h>int main(void){ printf(&amp原创 2018-11-08 22:35:02 · 355 阅读 · 0 评论 -
Linux学习2
文件管理: 定向 ls > test.txt 重定向 ls >>test.txt 覆盖test.txt 保存ls显示的信息 gedit test.txt 打开文件 cat /usr/include/stdio.h 查看文件 more /usr/include/std...原创 2019-04-01 16:38:15 · 229 阅读 · 0 评论 -
快速排序(QuickSort)
/*快速排序:1.以temp=a[SIZE/2]为基准,从右到左找到第一个比temp小的数,并交换位置,从左到右找第一个比temp大的数,并交换位置,2.递归排序a[0]到temp 和 temp到 a[SIZE]*/#include<stdio.h>#include<stdlib.h>#include<time.h>#define SIZE...原创 2019-03-20 22:49:34 · 260 阅读 · 0 评论 -
希尔排序(Shell)
/* 希尔排序(Shell) 1.将n个元素array 分成n/2个数字序列,第一个数据和第n/2+1 个数据为一对,并排好顺序 2.分成n/4个序列,再次排序 3.直到序列为一为止 */#include<stdio.h>#include<stdlib.h>#include<time.h>#define SIZE 1...原创 2019-03-20 21:49:29 · 186 阅读 · 0 评论 -
插入排序(InsertionSort)
/* 插入排序: 1.将数组a[0],a[1]从小到大排序 2.将a[2],插入到a[0],a[1]从小到大排序 3. ------*/#include<stdio.h>#include<stdlib.h>#include<time.h>#define SIZE 10void InsertionSort(int *a,int ...原创 2019-03-20 21:05:13 · 254 阅读 · 0 评论 -
选择排序(SelectionSort)
/* 选择排序算法 1.在数组中最小值和第一位交换位置 2.在n-1中的最小值和第二位交换位置*/#include<stdio.h>#include<stdlib.h>#include<time.h>#define SIZE 10void SelectionSort(int *a,int len){ int i,j,k,h; in...原创 2019-03-20 20:40:32 · 268 阅读 · 0 评论 -
冒泡排序(BubbleSort)
#include<stdio.h>#include<stdlib.h>#include<time.h>#define SIZE 10void BubbleSort(int *a,int len){ int i,j,k,temp; for(i=0;i<len-1;i++){ for(j=len-1;j>i;j--){ if(...原创 2019-03-20 20:23:54 · 221 阅读 · 0 评论 -
队列(Queue)
#include<stdlib.h>#include<stdio.h>#include<string.h># define QUEUELEN 15typedef struct{ char name[10]; int age;}DATA;typedef struct{ DATA data[QUEUELEN]; int head; int...原创 2019-03-20 19:27:37 · 223 阅读 · 0 评论 -
数组向后移动n位
1008 数组元素循环右移问题 (20 分)一个数组A中存有N(>0)个整数,在不允许使用另外数组的前提下,将每个整数循环向右移M(≥0)个位置,即将A中的数据由(A0A1⋯AN−1)变换为(AN−M⋯AN−1A0A1⋯AN−M−1)(最后M个数循环移至最前面的M个位置)。如果需要考虑程序移动数据的次数尽量少,要如何设计移动的方法?输入格式...原创 2019-03-16 11:34:15 · 4354 阅读 · 0 评论 -
栈(Stack)
#include<stdlib.h>#include<stdio.h>#include<string.h>#define MAXLEN 50typedef struct{ char name[10]; int age;}DATA;typedef struct stack{ DATA data[MAXLEN+1]; int top;}St...原创 2019-03-19 21:19:44 · 211 阅读 · 0 评论 -
链表
#include<stdlib.h>#include<stdio.h>#include<string.h>typedef struct{ char key[10]; char name[20]; int age;}Data;typedef struct Node{ Data nodeData; struct Node*nextNode;}...原创 2019-03-19 20:44:03 · 291 阅读 · 0 评论 -
顺序表(SList)
#include<stdio.h>#include<string.h>#define MAXLEN 100typedef struct{ char key[10]; char name[20]; int age;}DATA; //key name age typedef struct{ DATA ListData[MAXLEN+1]; in...原创 2019-03-19 19:48:48 · 369 阅读 · 0 评论 -
简单查询元素
#include<stdio.h>#include<stdlib.h>#include<time.h>#define N 20int main(){ int arr[N],x,n,i; int f=-1; srand(time(NULL)); for(i = 0;i<N;i++){ arr[i]=rand()/1000; }...原创 2019-03-19 18:58:24 · 229 阅读 · 0 评论 -
SQLCRUD
mysql复习 1.启动mysql 法一: win+r cmd services.msc 服务窗口 法二: cmd管理员 net start mysql net stop mysql 2.mysql登录退出 1.mysql -u root -p 2.exit quit 远程连接: mysql -h ip地...原创 2019-04-01 16:43:02 · 224 阅读 · 0 评论