剑指offer 2.4.1
1 #include2 #include 3 4 void sortAges(int a[],int n) 5 { 6 const int MAXAGE=99; 7 if(a==NULL||n<=0) 8 return; 9 int ageTimes[MAXAGE+1];10 int i,j,age,counts;11 for(i=0; i<=MAXAGE; ++i)12 ageTimes[i]=0;13 //读入年龄放入数组中14 for(i=0; i
本文共 384 字,大约阅读时间需要 1 分钟。
剑指offer 2.4.1
1 #include2 #include 3 4 void sortAges(int a[],int n) 5 { 6 const int MAXAGE=99; 7 if(a==NULL||n<=0) 8 return; 9 int ageTimes[MAXAGE+1];10 int i,j,age,counts;11 for(i=0; i<=MAXAGE; ++i)12 ageTimes[i]=0;13 //读入年龄放入数组中14 for(i=0; i
转载于:https://www.cnblogs.com/crane-practice/p/3931489.html