Coding interview preparation
5.81K subscribers
376 photos
56 files
163 links
Download Telegram
OSI Model vs Protocols
πŸ‘9
SQL commands you should know
πŸ‘8
Types of Shell in Linux
πŸ‘3
Important Docker Commands
πŸ‘7❀2
Network Protocols
πŸ‘10
Data Structure Cheat Sheet
πŸ‘8
12 Highest Paying Programming Jobs
πŸ‘7
How Linux Works
πŸ‘5😁1
SQL VS NO SQL Database
❀7πŸ‘4
Networking Cheat Sheet
πŸ‘4
IMAP and POP3
πŸ‘5
3 Types of Artificial Intelligence
πŸ‘6
Microservices Roadmap
❀2πŸ‘2
Internet of Things
πŸ‘5
The 9 Types of Intelligence
πŸ‘10
IOT 7 characteristics
πŸ‘5
Which Part of the Coding Interview Process is the most stressful?
πŸ‘6
Explanation:
A doubly linked list has two pointers β€˜left’ and β€˜right’ which enable it to traverse in either direction. Compared to singly liked list which has only a β€˜next’ pointer, doubly linked list requires extra space to store this extra pointer. Every insertion and deletion requires manipulation of two pointers, hence it takes a bit longer time. Implementing doubly linked list involves setting both left and right pointers to correct nodes and takes more time than singly linked list.