魔王回首
9768p1
全部博文(73)
2014年(73)
GFree_Wi
CU官方博
红尘星宇
鱼的记忆
拾忆1765
起个名字
小小论坛
Super丶
小闹腾
我是小小
coryzhan
gj941017
ligordon
zhoudido
hotcss
yunsdd
hahp
49126969
发布时间:2014-12-02 16:36:25
点击(此处)折叠或打开#include <stdio.h>int main(){ int a,b,c; a=1; b=1; while(1).........【阅读全文】
发布时间:2014-12-02 16:02:02
点击(此处)折叠或打开#include <stdio.h>int main(){ int a,b; a=1; b=1; while(1).........【阅读全文】
发布时间:2014-12-01 11:48:29
点击(此处)折叠或打开#include <stdio.h>#include <math.h>int main(){ float a,b; scanf("%f", &b); a=sqrt(b); .........【阅读全文】
发布时间:2014-12-01 11:47:31
点击(此处)折叠或打开#include <stdio.h>int main(){ int a,b,c; scanf("%d%d%d", &a,&b,&c); if(a>b&&a.........【阅读全文】
发布时间:2014-11-30 20:10:27
1.插入排序插入排序(Insertion Sort)是一种简单直观的排序算法。它的工作原理是通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。插入排序在实现上,通常采用in-place排序(即只需用到O(1)的额外空间的排序),因而在从后向前扫描过程中,需要反复把已排序元素逐步向后挪位,为最新.........【阅读全文】
登录 注册