การเขียนตัววนซ้ำแบบกำหนดเองใน C ++ นั้นค่อนข้างซับซ้อนและซับซ้อน
เนื่องจากฉันไม่สามารถหาวิธีการเขียนตัววนซ้ำแบบกำหนดเองได้ฉันจึงเขียนส่วนหัวเทมเพลตนี้ที่อาจช่วยได้ ตัวอย่างเช่นการทำให้Piece
คลาส iterable:
#include <iostream>
#include <vector>
#include "iterator_tpl.h"
struct Point {
int x;
int y;
Point() {}
Point(int x, int y) : x(x), y(y) {}
Point operator+(Point other) const {
other.x += x;
other.y += y;
return other;
}
};
struct Shape {
std::vector<Point> vec;
};
struct Piece {
Shape& shape;
Point offset;
Piece(Shape& shape, int x, int y) : shape(shape), offset(x,y) {}
struct it_state {
int pos;
inline void next(const Piece* ref) { ++pos; }
inline void begin(const Piece* ref) { pos = 0; }
inline void end(const Piece* ref) { pos = ref->shape.vec.size(); }
inline Point get(Piece* ref) { return ref->offset + ref->shape.vec[pos]; }
inline bool cmp(const it_state& s) const { return pos != s.pos; }
};
SETUP_ITERATORS(Piece, Point, it_state);
};
จากนั้นคุณจะสามารถใช้เป็นคอนเทนเนอร์ STL ปกติ:
int main() {
Shape shape;
shape.vec.emplace_back(1,2);
shape.vec.emplace_back(2,3);
shape.vec.emplace_back(3,4);
Piece piece(shape, 1, 1);
for (Point p : piece) {
std::cout << p.x << " " << p.y << std::endl;
// Output:
// 2 3
// 3 4
// 4 5
}
return 0;
}
นอกจากนี้ยังช่วยในการเพิ่มประเภทอื่น ๆ เช่น iterators หรือconst_iterator
reverse_const_iterator
ฉันหวังว่ามันจะช่วย