This is a note about binary search tree (BST) in JavaScript that I wrote when I was learning it. A binary search tree is a type of binary tree that maintains a specific relationship between nodes.
In this article, we're going to introduce how to make a linked list in JavaScript. JavaScript doesn't have a built-in class like `LinkedList`, but we can create one ourselves.
What's Hash Table? Hash Table is a data structure that stores key-value pairs and allows us to find the corresponding data quickly using the key we input.
這是我在學習 Hash Table 這個資料結構時的筆記。Hash Table 是什麼?Hash Table 是一種用來儲存鍵值對( key-value pair ) 的資料結構,並且能夠讓我們用輸入的「鍵」值以非常快的速度來找到對應的資料。