C
文章平均质量分 72
自知_冷暖
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Scanf函数的一些小细节
scanf函数式C语言的基本输入函数,对于很对接触过C语言的人都原创 2014-07-17 22:35:07 · 475 阅读 · 0 评论 -
求两个正整数之间的最大公约数
#include#includevoid Compare(unsigned int *num_a, unsigned int *num_b);unsigned int GetGCD(unsigned int num_a, unsigned int num_b);int main(){ unsigned int num_a, num_b;//input integer a,b unsi原创 2014-07-17 23:35:45 · 444 阅读 · 0 评论 -
QuickSort(快速排列)
#include#include#includevoid QuickSort(int *gDigits, int nLen);int main(int argc, char **argv){ //if there is no digits input as arguments, if (1 == argc){ printf("Please input the digits!\n"原创 2014-11-10 21:37:01 · 339 阅读 · 0 评论 -
Prefix Notation
Polish Notation1.IntroductionPolish notation, also known as Polish prefix notation or simply prefix notation, is a form of notation for logic, arithmetic, and algebra. Its distinguishing原创 2015-01-29 17:48:35 · 548 阅读 · 0 评论
分享