上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: 1.指针与整数之间的加减运算: 1)指针加减数字表示的意义是指针在数组中位置的移动; 对于整数部分而言,它代表的是一个元素,对于不同的数据类型,其数组的元素占用的字节是不一样的, 比如指针 + 1,并不是在指针地址的基础之上加 1 个地址,而是在这个指针地址的基础上加 1 个元素占用的字节数: 1) 阅读全文
posted @ 2022-09-11 17:18 wshidaboss 阅读(1032) 评论(0) 推荐(0) 编辑
摘要: 1.指针的自增 #include <iostream> #include <string> #include <windows.h> using namespace std; int main() { int ages[] = {21,51,26,36,41,25,36}; int len = si 阅读全文
posted @ 2022-09-11 15:56 wshidaboss 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1.为什么要使用指针? 1)函数的值传递,无法通过调用函数,来修改函数的实参; 2)被调用函数需要提供更多的“返回值”给调用函数; 3)减少值传递时带来的额外开销,提高代码执行效率。 2.指针的初始化 1)32 位系统中,int 整数占 4 个字节,指针同样占 4 个字节 2)64 位系统中,int 阅读全文
posted @ 2022-09-10 11:11 wshidaboss 阅读(263) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <windows.h> #include <string> #include <fstream> #define N 10 using namespace std; bool isPeak(int a[N][N], int i, int j) 阅读全文
posted @ 2022-09-04 23:07 wshidaboss 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <iomanip> #include <windows.h> #include <fstream> #include <string> using namespace std; #define N 10 int main() { int a[ 阅读全文
posted @ 2022-09-01 19:05 wshidaboss 阅读(46) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <windows.h> #include <fstream> #define N 64 using namespace std; bool isPeak(int grid[][N], int r, int c); int main() { i 阅读全文
posted @ 2022-08-31 20:20 wshidaboss 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 数组作为函数的参数传递,不是单纯的值传递,传递的是数组本身(访问的是同一个地址,相同的值)。 版本1:指明参数: #include <iostream> #include <windows.h> using namespace std; void part1(int put[3][4]) { for 阅读全文
posted @ 2022-08-31 11:35 wshidaboss 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1.可以把一维数组想象成一排士兵,把二维数组想象成一个士兵方阵,把三维数组想象成多个士兵方阵。这样,当你要找其中的一个士兵时,你只要知道他在哪个方阵(从 0、1、2 中选择),在哪一行(从 0-3)中选择,在哪一列(从 0-4 中选择),就可以找到他了。 #include <iostream> #i 阅读全文
posted @ 2022-08-29 13:00 wshidaboss 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 方法一: #include <iostream> #include <windows.h> #include <string> using namespace std; int main() { int i = 0, j = 0; int a[4][5]; //给数组成员赋值 for (int i 阅读全文
posted @ 2022-08-28 20:59 wshidaboss 阅读(36) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <windows.h> #include <string> using namespace std; float averageSalary(int n[],int i) { float sum = 0; for (int x = 0; x 阅读全文
posted @ 2022-08-28 15:45 wshidaboss 阅读(42) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页