1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C数组

第6章 数组;内容提要;数组的用处 ;数组(Array);数组的定义与初始化;数组的使用;数组的特点;只能逐个对数组元素进行操作(字符数组例外);例6.1 ;例6.1;例6.2 —打印出最高分及其学生序号 ;#include stdio.h #define ARR_SIZE 40 main() { float score[ARR_SIZE], maxScore; int n, i; long maxNum, num[ARR_SIZE]; printf(Please enter total number:); scanf(%d, n); printf(Please enter the number and score:\n); for (i=0; in; i++) { scanf(%ld%f, num[i], score[i]); } maxScore = score[0]; maxNum = num[0]; for (i=1; in; i++) { if (score[i] maxScore) { maxScore = score[i]; maxNum = num[i]; } } printf(maxScore = %.0f, maxNum = %ld\n, maxScore, maxNum); };#include stdio.h #define ARR_SIZE 40 float FindMax(float arr,int n); main() { float score[ARR_SIZE], maxScore; int n, i; printf(Please enter total number:); scanf(%d, n); printf(Please enter the score:\n); for (i=0; in; i++) { scanf(%f, score[i]); } maxScore = FindMax(score,n); printf(maxScore = %.0f\n, maxScore); };  ;简单变量作函数参数 ;数组作函数参数 ;现场演示排序算法;交换法排序;交换法排序;选择法排序;选择法排序;现场演示查找算法;顺序查找;折半查找;折半查找;int BinSearch(long a[], int n, long x) { int low, high, mid; low = 0; high = n - 1; while (low = high) { mid = (high + low) / 2; if (x a[mid]) { low = mid + 1; } else if (x a[mid]) { high = mid - 1; } else { return (mid); } } return(-1); };字符串(String)与字符数组;字符数组的初始化;逐个输入输出;scanf();gets();字符串处理函数;‘\0’作为字符串结束符的天生缺陷;例6.9 ;#include stdio.h #include string.h #define ARRA_SIZE 80 main() { int n, num; char str[ARRA_SIZE], min[ARRA_SIZE]; printf(Please enter five names:\n); gets(str); strcpy(min, str); for (n=1; n5; n++) { gets(str); if (strcmp(str, min) 0) { strcpy(min, str); } } printf(The min is:); puts(min); };二维数组的定义;二维数组的存储结构;二维数组的输入和输出;向函数传递二维数组;例6.

文档评论(0)

cbf96793 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档