LeetCode

Back to top ↑

Failed

Back to top ↑

Dynamic Programming

Back to top ↑

NCSU

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 ↑

LinkedList

Back to top ↑

Backtrack

Back to top ↑

DFS&BFS

Back to top ↑

Tree

Back to top ↑

Array

Back to top ↑

OS

RAID

less than 1 minute read

RAID Comparison

Back to top ↑

LeetCodeSummary

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 ↑

String

Back to top ↑

Substring

Back to top ↑

Math

Back to top ↑

Stack

Back to top ↑

Advanced Data Structure

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...

Back to top ↑

Palindromic

Back to top ↑

Edge Case

Back to top ↑

Greedy

Back to top ↑

Sliding Window

Back to top ↑

File System

Back to top ↑

Regex

Back to top ↑

Bit Manipulation

Back to top ↑

SQL

Back to top ↑

Sorting

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...

Back to top ↑

B-tree

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 ...

Back to top ↑

K-D-tree

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.

Back to top ↑

Diary

Back to top ↑