Write a C++ program for
B Tree in data structure.??
Answers
Answered by
1
Answer:
C++ Program to Implement B-Tree
* C++ Program to Implement B-Tree.
#include<stdio.h>
#include<conio.h>
#include<iostream>
struct BTreeNode.
int *data;
BTreeNode **child_ptr;
bool leaf;
Answered by
0
Answer:
sorry but iam I. 6 I am not understanding you question
Similar questions