91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++讀取csv文件怎么存到二維數組中

c++
小億
137
2024-06-11 10:22:36
欄目: 編程語言

可以使用以下代碼來讀取CSV文件并將其存儲到二維數組中:

#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>

int main() {

    // Open the CSV file
    std::ifstream file("data.csv");

    // Check if the file is open
    if (!file.is_open()) {
        std::cerr << "Could not open file" << std::endl;
        return 1;
    }

    // Create a two-dimensional vector to store the CSV data
    std::vector<std::vector<std::string>> data;

    // Read the file line by line
    std::string line;
    while (std::getline(file, line)) {
        // Create a stringstream from the line
        std::stringstream ss(line);
        std::vector<std::string> row;

        // Read each value from the stringstream and add it to the row vector
        std::string value;
        while (std::getline(ss, value, ',')) {
            row.push_back(value);
        }

        // Add the row vector to the data vector
        data.push_back(row);
    }

    // Print the data
    for (const auto& row : data) {
        for (const auto& value : row) {
            std::cout << value << " ";
        }
        std::cout << std::endl;
    }

    // Close the file
    file.close();

    return 0;
}

在上面的代碼中,我們首先打開了一個名為"data.csv"的CSV文件。然后我們創建了一個二維vector來存儲CSV數據。我們逐行讀取文件,并使用stringstream來解析每行數據并存儲到一個行向量中。最后,我們將每行向量添加到數據向量中。最后,我們遍歷數據向量并打印數據。

0
荥阳市| 涪陵区| 双柏县| 清原| 凭祥市| 甘肃省| 惠来县| 普宁市| 霍邱县| 饶阳县| 安吉县| 读书| 临高县| 铁力市| 安平县| 崇义县| 湾仔区| 同江市| 张家界市| 徐汇区| 焦作市| 平利县| 新宾| 友谊县| 灌南县| 江阴市| 通辽市| 全南县| 城固县| 深圳市| 许昌市| 淳安县| 综艺| 聂拉木县| 库车县| 嘉禾县| 乌兰察布市| 乌拉特前旗| 穆棱市| 长沙市| 白河县|