-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnode.hpp
177 lines (134 loc) · 4.18 KB
/
node.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#ifndef NODE_HPP
#define NODE_HPP
#include <vector>
#include <memory>
#include <map>
#include "common.hpp"
namespace AI
{
using std::move;
using std::forward;
using std::make_shared;
using std::shared_ptr;
using std::map;
using Private::NodePtrCompare;
template <typename T>
struct Node : public std::enable_shared_from_this<Node<T>>
{
using state_type = T;
using node_type = Node<T>;
using node_ptr = std::shared_ptr<node_type>;
using leafs_list = std::vector<node_ptr>;
typedef map<node_ptr, long, NodePtrCompare<node_ptr>> nodeptr_cost_map ;
struct Maker {
template<typename... Args>
inline node_ptr operator()(Args... args) const
{ return makeNode(forward<Args>(args)...); }
template<typename... Args> inline
static node_ptr makeNode(Args... args)
{ return make_shared<Node<T>>(forward<Args>(args)...); }
};
struct Edge {
Edge() {}
Edge(Edge&&) = default;
Edge( std::pair<node_ptr, long> &&data )
: mPath(move(data)) { }
inline Edge
operator()(const node_ptr &node, const long &gnlength) const
{ return Edge(make_pair(node, gnlength)); }
inline long cost() const
{ return mPath.second; }
inline node_ptr destination() const
{ return mPath.first; }
inline const std::pair<node_ptr, long> &getInner() const
{ return mPath; }
private:
const std::pair<node_ptr, long> mPath;
};
inline Node(T value)
: d_this(make_shared<NodeData>(forward<T>(value)))
{ }
inline Node(T value, const node_ptr &p, const long &c )
: d_this(make_shared<NodeData>(forward<T>(value))), mParent(p), mCost(c), mDepth(p->depth() + 1)
{ }
Node( const node_ptr &node, const node_ptr &p )
: Node(node, p, node->cost())
{ }
template <typename N>
Node( N node, N p, const long &cost )
: d_this(node->d_this), mParent(forward<N>(p)), mCost(cost), mDepth(p->depth() + 1)
{ }
inline const node_ptr &parent() const
{ return mParent; }
inline T getState() const
{ return d_this->mState; }
auto edges() const
{ return make_pair(d_this->mEdges.begin(), d_this->mEdges.end()); }
void setCost(const long &f)
{ mCost = f; }
long cost() const
{ return mCost; }
long g()
{
if (!mParent)
return 0;
try {
return mParent->d_this->mEdges.at(this->shared_from_this());
} catch (const std::out_of_range &ex) {
cout << "sorry! at "<< __func__ << "(n)" << endl;
exit(1);
}
}
long depth() const
{ return mDepth; }
template<typename K>
node_type &connect1(K value, const long &cost = 1)
{
auto leaf = Maker::makeNode(forward<K>(value));
d_this->mEdges.insert(make_pair(leaf, cost));
return *leaf;
}
void connect() {}
template < typename... Leafs >
void connect(Edge &&leaf, Leafs... ls)
{
this->connect2(move(leaf));
this->connect(forward<Leafs>(ls)...);
}
void connect2(Edge &&leaf)
{
leaf.destination()->d_this->mEdges.insert(make_pair(this->shared_from_this(), leaf.cost()));
d_this->mEdges.insert(move(leaf.getInner()));
}
int size() const { return d_this->mEdges.size(); }
private:
struct NodeData {
NodeData(T state)
: mState(forward<T>(state)) {}
const T mState;
nodeptr_cost_map mEdges;
};
private:
long mCost = 0;
const long mDepth = 0;
const node_ptr mParent;
const shared_ptr<NodeData> d_this;
};
template <typename T, typename E = Node<T>, typename R = shared_ptr<E> >
R makeNode(T value)
{
return E::Maker::makeNode(forward<T>(value));
}
template <typename T, typename R>
typename std::enable_if<!std::is_same<R,T>::value, R>::type
makeNode(T node, R parent, const long &c = 1)
{
return Node<T>::Maker::makeNode(forward<T>(node), forward<R>(parent), c);
}
template <typename R, typename Node = typename R::element_type, typename... Rest>
R makeNode(R node, R parent, Rest...args )
{
return Node::Maker::makeNode(forward<R>(node), forward<R>(parent), forward<Rest>(args)...);
}
}
#endif