B+ tree

I am trying to implement B+ tree.
1
2
3
4
5
class Node
{
   int data;
   vector *myvector[3]
};

I am trying to find out if this class can store information on B+ tree
thanks
¿what's vector?
Topic archived. No new replies allowed.