All Posts

Leetcode 382: Linked List Random Node

Given a singly linked list, implement a class that supports the initialization of the list and the ability to return a random node’s value with equal probability.

Leetcode 445: Add Two Numbers II

You are given two non-empty linked lists where each node contains a single digit representing a non-negative integer. Add the two numbers and return the sum as a linked list, ensuring the most significant digit is at the head of the list.

Leetcode 622: Design Circular Queue

Design and implement a Circular Queue. A circular queue is a linear data structure where the operations follow the FIFO principle, and the last position is connected to the first, forming a circle. This design allows better space utilization.

Leetcode 641: Design Circular Deque

Design a data structure that simulates a circular double-ended queue (deque) with a fixed maximum size. Implement the MyCircularDeque class with methods for inserting, deleting, and accessing elements at both ends of the deque.

Leetcode 705: Design HashSet

Design a custom HashSet without using any built-in hash table libraries. Implement the MyHashSet class with methods to add, remove, and check the existence of a value.

Leetcode 707: Design Linked List

Design a custom linked list that supports multiple operations. You can choose to implement it using a singly or doubly linked list. Implement the following methods in the MyLinkedList class: