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

เราจะแปลพจนานุกรม Python เป็น C ++ ได้อย่างไร


พจนานุกรมหลามเป็น Hashmap คุณสามารถใช้โครงสร้างข้อมูลแผนที่ใน C ++ เพื่อเลียนแบบพฤติกรรมของ python dict คุณสามารถใช้แผนที่ในภาษา C++ ได้ดังนี้:

#include <iostream>
#include <map>
using namespace std;
int main(void) {
   /* Initializer_list constructor */
   map<char, int> m1 = {
      {'a', 1},
      {'b', 2},
      {'c', 3},
      {'d', 4},
      {'e', 5}
   };
   cout << "Map contains following elements" << endl;
   for (auto it = m1.begin(); it != m1.end(); ++it)
   cout << it->first << " = " << it->second << endl;
   return 0;
}

สิ่งนี้จะให้ผลลัพธ์

The map contains following elements
a = 1
b = 2
c = 3
d = 4
e = 5

โปรดทราบว่าแผนที่นี้เทียบเท่ากับ python dict:

m1 = {
   'a': 1,
   'b': 2,
   'c': 3,
   'd': 4,
   'e': 5
}