Notes

CSS Base

CSS基础知识

Nginx Config

Nginx configuration for common use cases.

Gitea Drone Code Hosting and Pipeline Deployment

Recently been deploying CI/CD repository pipeline workflows again, documenting the experience.

B-Tree

B-Tree is a data structure that stores elements in a tree structure.

Sequential Symbol Tables

Sequential Symbol Tables is a data structure that stores key-value pairs in a sequential manner.

Heap

(Updated on )
堆 (Heap) 是一种基于完全二叉树的数据结构,能在 O(1) 时间获取最值,O(log n) 时间插入和删除。

Map

Map is a data structure that contains key-value pairs.

Red-Black Tree

Red-Black Tree is a data structure that stores elements in a binary search tree.

AVL Tree

AVL Tree is a self-balancing binary search tree.

Binary Search Tree

a binary search tree (BST), also called an ordered or sorted binary tree, is a rooted binary tree data structure with the key of each internal node being greater than all the keys in the respective node's left subtree and less than the ones in its right subtree.