• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

Difference between a LinkedList and a Binary Search Tree BST

April 9, 2015 by Dhaval Dave

Pointers

In a linked list, the items are linked together through a single next pointer.

Next Nodes

In a binary tree, each node can have 0, 1 or 2 subnodes, where (in case of a binary search tree) the key of the left node is lesser than the key of the node and the key of the right node is more than the node.

Search


As long as the tree is balanced, the searchpath to each item is a lot shorter than that in a linked list

Sort

Main difference is that BST can be sorted easily, and we can say its sorted already.

Insertion/Removal

Linked lists preserve insertion order and inserting is less expensive , while in BST insertion is expensive.
same in case for Removal, Removing a node from LinkedList is easy if you have previous node info, to be delated node info.
But in BST it expensive as again we need to order the BST.

Linked List

Item(1) -> Item(2) -> Item(3) -> Item(4) -> Item(5) -> Item(6) -> Item(7)

Binary tree

                 RootNode(4)
                /          \
             Node(2)        Node(6)
           /      \        /       \
        Node(1)  Node(3)  Node(5)   Node(7)

Similar Articles

Filed Under: Adobe Interview Questions, Interview Questions, problem Tagged With: Binary Search Tree, Linked List

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

How strtok() Works

Client Server C program

VMWare Openings

Puzzle : 100 doors in a row Visit and Toggle the door. What state the door will be after nth pass ?

Given a sorted array and a number x, find the pair in array whose sum is closest to x

Printing Longest Common Subsequence

LeetCode: Container With Most Water

VMWare SDEII Interview

Find position of the only set bit

Longest Increasing Subsequence

Advanced SQL Injection

Leetcode: Merge Intervals

Singly linked list

building with N steps, we can take 1,2,3 steps calculate number of ways to reach at top of building

Handle duplicates in Binary Search Tree

Get Minimum element in O(1) from input numbers or Stack

Find Nearest Minimum number in left side in O(n)

Urban Ladder Written Test.

CodeChef Code SGARDEN

Test Cases for Round Function

Doubly linked list

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

SAP Off Campus Hiring_ March 2015 Computer Skills

Maximum occurred Smallest integer in n ranges

Naurki.com Security Breach

Hackerearth : Counting Subarrays

Memory Efficient LinkedList

SAP Off Campus Hiring_ March 2015 Verbal Skills

Find Pythagorean Triplets in an array in O(N)

Print Power Set of a Set

Copyright © 2026 · Genesis Framework · WordPress · Log in