Skip to content

Instantly share code, notes, and snippets.

View TheGupta2012's full-sized avatar
🚀
Working

Harshit Gupta TheGupta2012

🚀
Working
View GitHub Profile
/* Deleting a node from Binary search tree */
#include<iostream>
using namespace std;
struct Node {
int data;
struct Node *left;
struct Node *right;
};
//Function to find minimum in a tree.
Node* FindMin(Node* root)
@akoepcke
akoepcke / gitmoji-cheatsheet.md
Created February 23, 2020 16:16 — forked from guillermocalvo/gitmoji-cheatsheet.md
Gitmoji Cheatsheet

Gitmoji Cheatsheet

Repository

  • 🎉 Initial commit
  • ⏪ Reverting changes
  • 🔀 Merging branches
  • 🙈 Adding or updating a .gitignore file