Recent content by Hamonic

  1. H

    C/C++ Binary search tree C++ with syntax errors

    #include <iostream.h> #include <conio.h> #include <stdio.h> void main() { struct znode // binary search tree node { int data; // data type is integer struct znode * left; // left subtree struct...