Intro to Bitmap Index

Intro to Bitmap Index: what is it and when to use There are bunch of different indices in the database world, you are probably most familiar with B-tree index. Different

Difference between truncate, delete and drop table

Difference between truncate, delete and drop table In mysql, as well as other database system, there are many ways to get rid of data or table itself. So what are

Leetcode 99 Recover Binary Search Tree

Leetcode 99 Recover Binary Search Tree The problem description is as follow: Two elements of a binary search tree (BST) are swapped by mistake. Recover the tree without changing its

Leetcode 25 Reverse Nodes in k-Group

Leetcode 25 Reverse Nodes in k-Group Edit Reverse Nodes in k-Group on GitHub The problem description is as follow: Given a linked list, reverse the nodes of a linked list

Leetcode 94 Binary Tree Inorder Traversal

Leetcode 94 Binary Tree Inorder Traversal The problem description is as follow: Given a binary tree, return the inorder traversal of its nodes’ values. For example: Given binary tree {1,#,2,3},