坚持真的是最难的事,上次写代码已经是十几天之前了。 //希尔排序 2013/09/22#include <stdio.h>#include <stdlib.h>#include <time.h>#include <malloc.h>//path为步长,正常的插入排序调用是insertSort(a,n,0,1)void insertSort(int* a,int n, int s
把基本排序都补全吧。 插入排序 //插入排序 2013/09/08#include <stdio.h>#include <stdlib.h>#include <time.h>#include <malloc.h>//范例程序,从后往前比较,比较和移位一次循环就够了,精妙!void insertSort(int* a, int n){int i,j,tmp;for( i
文章目录 Linux shell 获取更改系统时间默认输入显示时区世界协调时格式化日期更多信息 Linux shell 获取更改系统时间 … note:: 时光只解催人老,不信多情,长恨离亭,泪滴春衫酒易醒。- 晏殊《采桑子·时光只解催人老》 date命令可以用来打印显示亦或者更改日期和时间。 看看官方的定义如下: date - print or set the
Windows API一日一练(87)CreateProcess函数收藏 新一篇: Windows API一日一练(88)EnumProcesses函数 | 旧一篇: Windows API一日一练(88)EnumProcesses函数 <script>function StorePage(){d=document;t=d.selection?(d.selection.type!='Non