自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

转载 汉诺塔递归

#include unsigned _int64 hanoi(int n); int main() { int n; printf("input n:"); scanf("%d",&n); printf("\nresult:"); printf("%I64u",hanoi(n)); getch(); } unsigned _int64 hanoi(int n) { if(

2013-10-28 23:39:51 271

转载 结构体变量分析

1,结构体变量的初始化 #include int main() { struct Student { long int num; char name[20]; char sex; char addr[20]; }a={10101,"Li Lin",'M',"123 Beijing Road"}; printf("NO.:%ld\nname:s\nsex:%c\nadd

2013-10-27 23:29:39 274

转载 快速排序

#include void swap(int *a,int *b) { *a=*a^*b; *b=*a^*b; *a=*a^*b; } int partition(int *a,int fI,int lI) { int i=fI-1,j=0; for(j=fI;j { if(*(a+j) { i++; if(i!=j) swap(a+j,a+i); } } i

2013-10-24 23:09:59 255

原创 n!的c实现。

#include int  factorial(int n) { if(n==1) { return 1; } else { return n*factorial(n-1); } } int main() { int n; int result; printf("inpute number:"); scanf("%d",&n); if(n { result=

2013-10-24 22:52:54 287

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除