数组
C或C++中的数组是存储在连续内存位置的项目的集合,可以使用数组的索引随机访问元素。它们用于存储相似类型的元素,因为对于所有元素,数据类型必须相同。它们可用于存储原始数据类型的集合,例如任何特定类型的int,float,double,char等。作为补充,C或C++中的数组可以存储派生的数据类型,例如结构,指针等。
有两种类型的数组:
- 一维阵列
- 多维数组
一维数组:一维数组是相同数据类型的集合。一维数组声明为:
data_type variable_name[size]
data_type is the type of array, like int, float, char, etc.
variable_name is the name of the array.
size is the length of the array which is fixed.
注意:数组元素的位置取决于我们使用的数据类型。
下面是该数组的图示:
下面是说明数组遍历的程序:
// C++ program to illustrate the traversal
// of the array
#include "iostream"
using namespace std;
// Function to illustrate traversal in arr[]
void traverseArray(int arr[], int N)
{
// Iterate from [1, N-1] and print
// the element at that index
for (int i = 0; i < N; i++) {
cout << arr[i] << ' ';
}
}
// Driver Code
int main()
{
// Given array
int arr[] = { 1, 2, 3, 4 };
// Size of the array
int N = sizeof(arr) / sizeof(arr[0]);
// Function call
traverseArray(arr, N);
}
输出:
1 2 3 4
多维数组:多维数组也称为数组数组。通常,我们使用二维数组。它也被称为矩阵。我们使用两个索引来遍历2D数组的行和列。声明为:
data_type variable_name[N][M]
data_type is the type of array, like int, float, char, etc.
variable_name is the name of the array.
N is the number of rows.
M is the number of columns.
下面是说明二维数组遍历的程序:
// C++ program to illustrate the traversal
// of the 2D array
#include "iostream"
using namespace std;
const int N = 2;
const int M = 2;
// Function to illustrate traversal in arr[][]
void traverse2DArray(int arr[][M], int N)
{
// Iterate from [1, N-1] and print
// the element at that index
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
cout << arr[i][j] << ' ';
}
cout << endl;
}
}
// Driver Code
int main()
{
// Given array
int arr[][M] = { { 1, 2 }, { 3, 4 } };
// Function call
traverse2DArray(arr, N);
return 0;
}
输出:
1 2
3 4
弦乐
C++字符串类在内部使用字符数组来存储字符,但是所有的内存管理,分配和null终止都由字符串类本身来处理,这就是为什么它易于使用的原因。例如,它声明为:
char str[] = "GeeksforGeeks"
下面是说明字符串遍历的程序:
// C++ program to illustrate the
// traversal of string
#include "iostream"
using namespace std;
// Function to illustrate traversal
// in string
void traverseString(char str[])
{
int i = 0;
// Iterate till we found '\0'
while (str[i] != '\0') {
printf("%c ", str[i]);
i++;
}
}
// Driver Code
int main()
{
// Given string
char str[] = "GeekforGeeks";
// Function call
traverseString(str);
return 0;
}
输出:
G e e k f o r G e e k s
C++中的字符串data_type提供了各种字符串操作功能。他们是:
- strcpy() :用于将字符从一个字符串复制到另一字符串。
- strcat() :用于添加两个给定的字符串。
- strlen() :用于查找给定字符串的长度。
- strcmp() :用于比较两个给定的字符串。
下面是说明上述功能的程序:
// C++ program to illustrate functions
// of string manipulation
#include "iostream"
#include "string.h"
using namespace std;
// Driver Code
int main()
{
// Given two string
char str1[100] = "GeekforGeeks";
char str2[100] = "HelloGeek";
// To get the length of the string
// use strlen() function
int x = strlen(str1);
cout << "Length of string " << str1
<< " is " << x << endl;
cout << endl;
// To compare the two string str1
// and str2 use strcmp() function
int result = strcmp(str1, str2);
// If result is 0 then str1 and str2
// are equals
if (result == 0) {
cout << "String " << str1
<< " and String " << str2
<< " are equal." << endl;
}
else {
cout << "String " << str1
<< " and String " << str2
<< " are not equal." << endl;
}
cout << endl;
cout << "String str1 before: "
<< str1 << endl;
// Use strcpy() to copy character
// from one string to another
strcpy(str1, str2);
cout << "String str1 after: "
<< str1 << endl;
cout << endl;
return 0;
}
输出:
Length of string GeekforGeeks is 12
String GeekforGeeks and String HelloGeek are not equal.
String str1 before: GeekforGeeks
String str1 after: HelloGeek
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。