Posts by Category

LeetCodeNotes

LeetCode - The Stack Part

less than 1 minute read

The typical problems in LeetCode is the basic calculator series. The main idea is to use stack and read the input string from end to start if there’s bracket...

LeetCode - The Tree Part

3 minute read

The basic idea of tree related problems is to use recursion. If we can do it for left subtree and right subtree, we can do it for the whole tree.

LeetCode - The Linked List Part

less than 1 minute read

Basically, we can use two approaches to solve linked list related problems. One is recursion, one is iteration. What we need to do is find the way we change ...

Back to top ↑

Study Notes

K-D-tree

1 minute read

A k-dimensional or k-d tree is a binary tree used to subdivide a collection of records into ranges for k different attributes in each record.

B-tree

2 minute read

In the 1980s B-trees were applied to database management systems, with an emphasis on how to ensure consistent B-tree access patterns to support concurrency ...

Sorting

1 minute read

Sorting is always an important topic in computer science. Theoretically, comparison sorts cannot perform better than O(n lgn) in the best case, better perfor...

RAID

less than 1 minute read

RAID Comparison

Back to top ↑

SQL

Back to top ↑

Diary

Back to top ↑