Skip to content

Instantly share code, notes, and snippets.

View datmieu204's full-sized avatar
๐Ÿ˜ž
lonely

Sypuncute2k4 datmieu204

๐Ÿ˜ž
lonely
  • UET
  • Ha Noi
  • 23:13 (UTC -12:00)
View GitHub Profile
@toboqus
toboqus / btree.cpp
Created November 3, 2015 08:53
Binary tree implementation in c++
#include <iostream>
using namespace std;
struct node{
int value;
node *left;
node *right;
};
@harish-r
harish-r / Binary Search Tree.cpp
Last active April 22, 2025 09:11
Binary Search Tree Implementation in C++
/*
** Binary Search Tree implementation in C++
** Harish R
*/
#include<iostream>
using namespace std;
class BST {
struct node {