本人初学c语言程序不是很拿手,几个值得研究的c语言经典例题。希望大家指教-I novice c language program is not very good at, several worth studying classical language c examples. We hope the exhibitions 下载
|
n牛的c语言经典例题,学好c语言在此一举-n cattle classic example c language, learn the language c one stroke 下载
|
C语言不错例题及源代码,恨经典的常用算法,仔细看看,请多多指导Cst2008- 下载
|
100个经典的c语言小例子,包括推理等题目和详细的解答过程。-100 classic example of a small c language, including topics such as reasoning and detailed answer process. 下载
|
经典C语言程序设计100例1-10 如【程序1】 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 1.程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去 掉不满足条件的排列。 2.程序源代码: main() { int i,j,k printf("\n") for(i=1 i<5 i++) /*以下为三重循环*/ for(j=1 j<5 j++) for (k=1 k<5 k++) { if (i!=k&&i!=j&&j!=k) /*确保i、j、k三位互不相同*/ printf("%d,%d,%d\n",i,j,k) } } -classic C Programming Language Design 100 cases [1-10 as a procedure -- topic : 1,2,3, 4 figures, the number can be formed without contending with repeat the three-digit figures? Are? 1. Program Analysis : can be filled in 100, 10, - digit figures are 1,2,3,4. With all the components removed after not satisfied with the conditions. 2. Source code : main () (int i, j, k printf ( "\ n") for (i = 1 i 下载
|
耿国华高教出版社的《数据结构》的光盘(C语言),除了课件还有所有例题及课后题、经典算法的程序源代码,很不错!-Geng China Higher Education Press the "data structure," the CD-ROM (C language) In addition there are all examples courseware and after that, classical algorithm source code that was pretty good! 下载
|
经典"模拟退火算法" 解决“推销员问题”的实例 对数模和组合优化问题很有帮助 简单易懂的C语言编程和详细的注释,容易推广到其他语言- 下载
|