Skip to content

SimpleTechTalks

To make technologies simpler

  • Home
  • Data Structures
    • Linked List
    • Graph
    • Hashing
    • Stack
    • Queue
    • Priority Queue
    • Tree
      • Binary Tree
      • Binary Search Tree
    • wordpress
  • Programming
    • Unix
    • Dynamic Programming
    • C
    • C++
      • C++11
    • Python
  • Technology
    • Diameter
    • Microservices
    • Networking
    • Telecom
    • Tools
  • Questions & Answers
    • Programming Questions
    • Interview Questions
  • Contact Us
  • Home
  • Data Structures
    • Linked List
    • Graph
    • Hashing
    • Stack
    • Queue
    • Priority Queue
    • Tree
      • Binary Tree
      • Binary Search Tree
    • wordpress
  • Programming
    • Unix
    • Dynamic Programming
    • C
    • C++
      • C++11
    • Python
  • Technology
    • Diameter
    • Microservices
    • Networking
    • Telecom
    • Tools
  • Questions & Answers
    • Programming Questions
    • Interview Questions
  • Contact Us

Tag: Adding two numbers

Linked List / Programming Questions

Adding Two Numbers Represented by Linked List

adminby admin

Given 2 numbers where each digit is represented by a Linked List, write a program to sum the numbers and save it in a third Linked List.
For eg:

List 1 =         7 -> 8 -> 6 -> 4
List 2 = 6 -> 6 -> 8 -> 4 -> 6
—————————————-
Sum  =  7-> 4 -> 7 -> 1 -> 0

(more…)
Adding Two Numbers Represented by Linked List Read More

Search

  • Difference Between Friend Function and Member Function
  • C++11: extern template Explained With Simple Example
  • Binary Search Tree Deletion Of Node Explained With Simple Example
  • Diameter Protocol Basics
  • AVL Tree Deletion Of Node Explained With Simple Example
  • AVL Tree Explanation With Simple Examples
  • Topological Sort Explained With Simple Example
  • Difference between constexpr vs inline functions
  • AVL Tree Self Balancing Rotations – Right Left Rotation explained
  • C++11: Uniform Initialization explained with Simple example
Copyright © 2025 SimpleTechTalks. Privacy Policy