Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

จะเก็บ Data Triplet ใน Vector ใน C ++ ได้อย่างไร


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อทำความเข้าใจวิธีจัดเก็บข้อมูลแฝดสามในเวกเตอร์ใน C++

ในการจัดเก็บสามองค์ประกอบในเซลล์เดียวของเวกเตอร์ เราจะสร้างโครงสร้างที่ผู้ใช้กำหนด แล้วสร้างเวกเตอร์จากโครงสร้างที่ผู้ใช้กำหนด

ตัวอย่าง

#include<bits/stdc++.h>
using namespace std;
struct Test{
   int x, y, z;
};
int main(){
   //creating a vector of user defined structure
   vector<Test> myvec;
   //inserting values
   myvec.push_back({2, 31, 102});
   myvec.push_back({5, 23, 114});
   myvec.push_back({9, 10, 158});
   int s = myvec.size();
   for (int i=0;i<s;i++){
      cout << myvec[i].x << ", " << myvec[i].y << ", " << myvec[i].z << endl;
   }
   return 0;
}

ผลลัพธ์

2, 31, 102
5, 23, 114
9, 10, 158