|
| 1 | +#ifndef TreeNodeIterator_h |
| 2 | +#define TreeNodeIterator_h |
| 3 | + |
| 4 | +#include <iostream> |
| 5 | +#include <stack> |
| 6 | +#include "TreeNode.h" |
| 7 | + |
| 8 | + |
| 9 | +class TreeNodeIterator { |
| 10 | + std::stack<TreeNode *> stack_; |
| 11 | + |
| 12 | +public: |
| 13 | + // Обязательными являются первые два параметра: |
| 14 | + |
| 15 | + // Тип итератора: |
| 16 | + typedef std::input_iterator_tag iterator_category; |
| 17 | + // Тип выбирается из следующих типов: |
| 18 | + // input_iterator_tag |
| 19 | + // Должен поддерживать префиксную форму инкремента, оператор !=, |
| 20 | + // оператор * и оператор ->. Понадобится конструктор и конструктор |
| 21 | + // копирования. |
| 22 | + // output_iterator_tag |
| 23 | + // forward_iterator_tag |
| 24 | + // bidirectional_iterator_tag |
| 25 | + // random_access_iterator_tag |
| 26 | + |
| 27 | + // Тип значения которое хранится и возвращается операторами * и ->: |
| 28 | + typedef TreeNode value_type; |
| 29 | + |
| 30 | + // Тип который может описывать растояние между итераторами: |
| 31 | + typedef std::ptrdiff_t difference_type; |
| 32 | + |
| 33 | + // Тип указателя на значение: |
| 34 | + typedef TreeNode *pointer; |
| 35 | + |
| 36 | + // Тип ссылки на значения: |
| 37 | + typedef TreeNode &reference; |
| 38 | + |
| 39 | + |
| 40 | + explicit TreeNodeIterator(TreeNode *value = nullptr) { |
| 41 | + if (value) |
| 42 | + stack_.push(value); |
| 43 | + } |
| 44 | + |
| 45 | + // TreeNode * operator*() const { |
| 46 | + // return !stack_.empty() ? stack_.top() : nullptr; |
| 47 | + // } |
| 48 | + |
| 49 | + typename TreeNodeIterator::reference operator*() const { |
| 50 | + TreeNode *node = nullptr; |
| 51 | + if (!stack_.empty()) { |
| 52 | + node = stack_.top(); |
| 53 | + } |
| 54 | + return *node; |
| 55 | + } |
| 56 | + |
| 57 | + TreeNode * operator->() const { |
| 58 | + return !stack_.empty() ? stack_.top() : nullptr; |
| 59 | + } |
| 60 | + |
| 61 | + |
| 62 | + // Хорошая практика добавлять поддержку != и == вместе: |
| 63 | + |
| 64 | + bool operator==(TreeNodeIterator const &other) const { |
| 65 | + if (stack_.empty() || other.stack_.empty()) |
| 66 | + return stack_.empty() && other.stack_.empty(); |
| 67 | + |
| 68 | + return stack_.top() == other.stack_.top(); |
| 69 | + } |
| 70 | + |
| 71 | + bool operator!=(TreeNodeIterator const &other) const { |
| 72 | + return !(*this == other); |
| 73 | + } |
| 74 | + |
| 75 | + |
| 76 | + TreeNodeIterator & operator++() { |
| 77 | + if (!stack_.empty()) { |
| 78 | + TreeNode *node = stack_.top(); |
| 79 | + stack_.pop(); |
| 80 | + for (int i = node->GetChildrenCount() - 1; i >= 0; --i) |
| 81 | + stack_.push(node->GetChildAtIndex(i)); |
| 82 | + } |
| 83 | + return *this; |
| 84 | + } |
| 85 | + |
| 86 | +}; |
| 87 | + |
| 88 | +#endif /* TreeNodeIterator_h */ |
0 commit comments