• 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

Maximum path sum between two leaves

write a c program that given a set a of n numbers and another number x determines whether or not there exist two elements in s whose sum is exactly x

Best Java Book | Top Java Programming Book for Beginners

Practo Hiring Experience

Spanning Tree

Stickler thief

Memory Efficient LinkedList

Given array of 0’s and 1’s. All 0’s are coming first followed by 1’s. find the position of first 1

Find the number ABCD such that when multipled by 4 gives DCBA.

Doubly linked list

Count number of ways to reach a given score in a game

strtok()

DFS (Depth First Search)

Find and print longest consecutive number sequence in a given sequence in O(n)

The greedy coins game Dynamic Programming

robot standing at first cell of an M*N matrix. It can move only in two directions, right and down. In how many ways, it can reach to the last cell i.e. (M, N) Code it

Circular Linked List

Print vertical sum of all the axis in the given binary tree

25 horses 5 tracks Find 3 fastest puzzle

Generate next palindrome number

Adobe Interview Questions 8 month Exp

Code Chef PRGIFT Solution

Level order traversal in Spiral form

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Generate largest number arranging a no. of given non negative integer numbers

ADOBE Aptitude C Language Test

Maximum size of square sub matrix with all 1’s in a binary matrix

Printing intermediate Integers between one element & next element of array

Check if an array has duplicate numbers in O(n) time and O(1) space

Find the kth number with prime factors 3, 5 and 7

Copyright © 2026 · Genesis Framework · WordPress · Log in