// L-35 MCS 360 Fri 12 Nov 2010 : mcs360_btree_node_test.cpp

/* Tests the structure Node that will be used in a B-tree. */

#define Item_Type int
#define numbchil 5
#include "mcs360_btree_node.h"

#include <iostream>
using namespace std;

int main()
{
   Node nd;

   for(int i=0; i<numbchil-1; i++)
      nd.data[i] = i+1;

   cout << "Data at the node :";
   for(int i=0; i<numbchil-1; i++)
      cout << " " << nd.data[i];
   cout << endl;

   return 0;
}

