No solution file found.
#include <algorithm>
#include <iostream>
#include <iterator>
#include <sstream>
#include <string>
#include <vector>
template<typename T>
struct Node {
T val;
Node<T>* left;
Node<T>* right;
explicit Node(T val, Node<T>* left = nullptr, Node<T>* right = nullptr)
: val{val}, left{left}, right{right} {}
~Node() {
delete left;
delete right;
}
};
bool subtree_of_another_tree(Node<int>* root, Node<int>* sub_root) {
// WRITE YOUR BRILLIANT CODE HERE
return false;
}
// this function builds a tree from input
// learn more about how trees are encoded in https://algo.monster/problems/serializing_tree
template<typename T, typename Iter, typename F>
Node<T>* build_tree(Iter& it, F f) {
std::string val = *it;
++it;
if (val == "x") return nullptr;
Node<T>* left = build_tree<T>(it, f);
Node<T>* right = build_tree<T>(it, f);
return new Node<T>{f(val), left, right};
}
template<typename T>
std::vector<T> get_words() {
std::string line;
std::getline(std::cin, line);
std::istringstream ss{line};
ss >> std::boolalpha;
std::vector<T> v;
std::copy(std::istream_iterator<T>{ss}, std::istream_iterator<T>{}, std::back_inserter(v));
return v;
}
int main() {
std::vector<std::string> root_vec = get_words<std::string>();
auto root_it = root_vec.begin();
Node<int>* root = build_tree<int>(root_it, [](auto s) { return std::stoi(s); });
std::vector<std::string> sub_root_vec = get_words<std::string>();
auto sub_root_it = sub_root_vec.begin();
Node<int>* sub_root = build_tree<int>(sub_root_it, [](auto s) { return std::stoi(s); });
bool res = subtree_of_another_tree(root, sub_root);
std::cout << std::boolalpha << res << '\n';
}
No solution file found.