热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

c++中的数组和字符串

c++中的数组和字符串原文:https://www.geeksf

c++中的数组和字符串

原文:https://www.geeksforgeeks.org/arrays-and-strings-in-c/

阵列

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);
}

Output:

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.

下面是演示 2D 数组遍历的程序:

// 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;
}

Output:

1 2
3 4

琴弦

C++字符串类在内部使用字符数组来存储字符,但是所有的内存管理、分配和空终止都是由字符串类本身处理的,这就是它易于使用的原因。例如,它被声明为:

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;
}

Output:

G e e k f o r G e e k s

C++中的字符串数据类型提供了各种字符串操作功能。它们是:


  1. strcpy() :用于将字符从一个字符串复制到另一个字符串。

  2. strcat() :用于给定的两个字符串相加。

  3. strlen() :用于求给定字符串的长度。

  4. 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;
}

Output:

Length of string GeekforGeeks is 12
String GeekforGeeks and String HelloGeek are not equal.
String str1 before: GeekforGeeks
String str1 after: HelloGeek


推荐阅读
  • 本文详细介绍了在Luat OS中如何实现C与Lua的混合编程,包括在C环境中运行Lua脚本、封装可被Lua调用的C语言库,以及C与Lua之间的数据交互方法。 ... [详细]
  • 本文详细探讨了Java中HashMap类的hash()方法的工作原理及其重要性,特别是在JDK 7版本中的实现。 ... [详细]
  • 函子(Functor)是函数式编程中的一个重要概念,它不仅是一个特殊的容器,还提供了一种优雅的方式来处理值和函数。本文将详细介绍函子的基本概念及其在函数式编程中的应用,包括如何通过函子控制副作用、处理异常以及进行异步操作。 ... [详细]
  • H5技术实现经典游戏《贪吃蛇》
    本文将分享一个使用HTML5技术实现的经典小游戏——《贪吃蛇》。通过H5技术,我们将探讨如何构建这款游戏的两种主要玩法:积分闯关和无尽模式。 ... [详细]
  • 1.绑定htmlcss1.1对象语法:  传给v-bind:class一个对象,以动态地切换class   ... [详细]
  • ArcBlock 发布 ABT 节点 1.0.31 版本更新
    2020年11月9日,ArcBlock 区块链基础平台发布了 ABT 节点开发平台的1.0.31版本更新,此次更新带来了多项功能增强与性能优化。 ... [详细]
  • 探讨了一个包含纯虚函数的C++代码片段,分析了其中的语法错误及逻辑问题,并提出了修正方案。 ... [详细]
  • 基于SSM框架的在线考试系统:随机组卷功能详解
    本文深入探讨了基于SSM(Spring, Spring MVC, MyBatis)框架构建的在线考试系统中,随机组卷功能的设计与实现方法。 ... [详细]
  • 探讨了在HTML表单中使用元素代替进行表单提交的方法。 ... [详细]
  • 深入解析 C++ 中的 String 和 Vector
    本文详细介绍了 C++ 编程语言中 String 和 Vector 的使用方法及特性,旨在帮助开发者更好地理解和应用这两个重要的容器。 ... [详细]
  • 尽管在WPF中工作了一段时间,但在菜单控件的样式设置上遇到了一些基础问题,特别是关于如何正确配置前景色和背景色。 ... [详细]
  • 利用Node.js实现PSD文件的高效切图
    本文介绍了如何通过Node.js及其psd2json模块,快速实现PSD文件的自动化切图过程,以适应项目中频繁的界面更新需求。此方法不仅提高了工作效率,还简化了从设计稿到实际应用的转换流程。 ... [详细]
  • 使用Vue指令实现下拉菜单效果
    使用Vue指令实现下拉菜单效果模仿重庆红岩历史革命博物馆官网的导航栏内容和效果,使用Vue实现。官网地址如下:https:www.hongyan.info官网效果效果图片展示代码展 ... [详细]
  • 本文详细介绍了C++中的构造函数,包括其定义、特点以及如何通过构造函数进行对象的初始化。此外,还探讨了转换构造函数的概念及其在不同情境下的应用,以及如何避免不必要的隐式类型转换。 ... [详细]
  • 稀疏数组是一种用于存储和处理大部分元素为零或相同值的数组的技术。通过记录非零元素的位置和值,稀疏数组可以显著减少存储空间和提高处理效率。 ... [详细]
author-avatar
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有