Last active
August 29, 2015 14:23
-
-
Save apelisse/b7ed2f2924e72b8d475c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <limits> | |
struct Nil { | |
typedef int type; | |
}; | |
template <int V, class L = Nil, class R = Nil> struct BTree { | |
typedef decltype(V) type; | |
static const type value = V; | |
typedef L left; | |
typedef R right; | |
}; | |
template <class T, | |
typename T::type min = std::numeric_limits<typename T::type>::min(), | |
typename T::type max = std::numeric_limits<typename T::type>::max()> | |
struct isBSTree { | |
static const bool value = T::value >= min && | |
T::value < max && | |
isBSTree<typename T::left, min, T::value>::value && | |
isBSTree<typename T::right, T::value + 1, max>::value; | |
}; | |
template <int min, int max> struct isBSTree<Nil, min, max> : public std::true_type {}; | |
int | |
main() | |
{ | |
static_assert(isBSTree<BTree<5, BTree<2, BTree<1, BTree<0, BTree<-1>>>>>>::value, "This is a binary tree"); | |
static_assert(isBSTree<BTree<5, BTree<2, BTree<1, BTree<0, BTree<1>>>>>>::value, "This is not a binary tree"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment