亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
霍城县| 调兵山市| 阜城县| 上虞市| 塔河县| 柏乡县| 商南县| 松滋市| 阳原县| 平江县| 锡林浩特市| 兴隆县| 丽江市| 苗栗市| 大名县| 阜新市| 许昌县| 屏山县| 文水县| 巴林左旗| 岗巴县| 刚察县| 新竹县| 屏南县| 开化县| 普陀区| 济源市| 惠来县| 永靖县| 蒲城县| 留坝县| 巢湖市| 玉田县| 阳江市| 托克托县| 新蔡县| 台北县| 吴忠市| 宁南县| 山东省| 奉节县|