legongju.com
我们一直在努力
2025-01-10 09:49 | 星期五

如何在C++中实现table的增删改查

在C++中,可以使用std::mapstd::unordered_map来实现一个简单的表(table),并进行增删改查操作。下面是一个简单的示例:

首先,需要包含相应的头文件:

#include
#include 
#include

接下来,定义一个类来表示表格中的数据:

class Record {
public:
    std::string name;
    int age;
};

然后,创建一个std::mapstd::unordered_map来存储表格数据:

std::map table;

接下来,实现增删改查操作:

  1. 插入(增):
void insert(int id, const std::string& name, int age) {
    Record record;
    record.name = name;
    record.age = age;
    table[id] = record;
}
  1. 删除(删):
void deleteRecord(int id) {
    auto it = table.find(id);
    if (it != table.end()) {
        table.erase(it);
    } else {
        std::cout << "Record not found."<< std::endl;
    }
}
  1. 修改(改):
void update(int id, const std::string& newName, int newAge) {
    auto it = table.find(id);
    if (it != table.end()) {
        it->second.name = newName;
        it->second.age = newAge;
    } else {
        std::cout << "Record not found."<< std::endl;
    }
}
  1. 查询(查):
void search(int id) {
    auto it = table.find(id);
    if (it != table.end()) {
        std::cout << "ID: " << it->first << ", Name: " << it->second.name << ", Age: " << it->second.age<< std::endl;
    } else {
        std::cout << "Record not found."<< std::endl;
    }
}

最后,编写主函数来测试这些操作:

int main() {
    insert(1, "Alice", 30);
    insert(2, "Bob", 25);
    insert(3, "Charlie", 22);

    search(1);
    search(4);

    update(1, "Alicia", 31);
    search(1);

    deleteRecord(2);
    search(2);

    return 0;
}

这个示例展示了如何在C++中使用std::map实现一个简单的表格,并进行增删改查操作。注意,这里使用了int作为键值,但也可以使用其他类型作为键值。

未经允许不得转载 » 本文链接:https://www.legongju.com/article/98316.html

相关推荐

  • 如何在C++中使用strftime输出日期和时间

    如何在C++中使用strftime输出日期和时间

    strftime 是 C++ 标准库中的一个函数,用于将日期和时间格式化为字符串。以下是如何在 C++ 中使用 strftime 输出日期和时间的示例:
    #include
    #includ...

  • 如何在C++中使用strftime格式化时间

    如何在C++中使用strftime格式化时间

    strftime 是 C++ 标准库中的一个函数,用于将 tm 结构体(包含日期和时间信息)格式化为字符串。以下是如何在 C++ 中使用 strftime 的示例:
    #include

  • strftime函数在C++中的使用方法是什么

    strftime函数在C++中的使用方法是什么

    strftime 是一个 C 语言库函数,用于将时间格式化为字符串。在 C++ 中,你可以通过 头文件使用这个函数。以下是 strftime 函数在 C++ 中的基本用法:
    #incl...

  • 如何在C++中使用strftime进行日期计算

    如何在C++中使用strftime进行日期计算

    strftime 是 C++ 标准库中的一个函数,用于将 tm 结构(包含日期和时间信息)格式化为字符串。但是,strftime 本身并不执行日期计算。要在 C++ 中进行日期计算,...

  • C++ table与数组相比有哪些优势

    C++ table与数组相比有哪些优势

    在 C++ 中,“table” 通常指的是二维数组或者类似于二维数组的数据结构 动态大小:表(二维向量)可以在运行时动态调整大小,而数组的大小在编译时确定且不能更...

  • 如何在C++中高效地操作table

    如何在C++中高效地操作table

    在C++中,可以使用多种数据结构来高效地操作表格,例如std::vector、std::array和std::map等 使用std::vector或std::array: 对于已知大小的表格,可以使用std::...

  • C++ table的数据结构有哪些选择

    C++ table的数据结构有哪些选择

    在C++中,表(Table)是一种用于存储和组织数据的数据结构 二维数组(2D Array):这是最基本的表数据结构。它是一个固定大小的、连续的内存块,可以通过行和列的...

  • C++ option类型的内存管理

    C++ option类型的内存管理

    在 C++ 中,std::optional 是一个模板类,用于表示一个值可能存在也可能不存在。它是 C++17 引入的一种新特性,主要用于解决“空指针”或“异常”等问题。std::o...