Skip to main content

Featured

Merge Sort in C++

  Merge Sort in C++ Introduction Merge Sort is a popular sorting algorithm that follows the Divide and Conquer approach. It divides an array into smaller subarrays, recursively sorts those subarrays, and finally merges the sorted subarrays to produce a completely sorted array. In this tutorial, we will learn how to implement Merge Sort in C++ . The program divides the array into two halves using the mid index, recursively sorts both halves, and then combines them using the merge() function. Merge Sort has a time complexity of O(n log n) in the best, average, and worst cases. Table of Contents Algorithm C++ Program Input Sample Output Output Explanation Dry Run Flow of Execution Time Complexity Space Complexity Applications Key Points Interview Questions Frequently Asked Questions Keywords Conclusion Algorithm Start the program. Read the size of the array. Read the array elements from the user. Call the mer...

C++ Program to Add Two Complex Numbers using Operator Overloading

C++ Program to Add Two Complex Numbers using Operator Overloading

✅ C++ Program to Add Two Complex Numbers using Operator Overloading

#include<iostream>
using namespace std;
class complex
{
    public:
    int real,imag;
    void input()
    {
        cout<<"Enter real part:\n";
        cin>>real;
        cout<<"Enter imag part:\n";
        cin>>imag;
    }
    complex()
    {
        real=0;
        imag=0;
    }
    complex(int r,int i )
    {
        real=r;
        imag=i;
    }
    complex operator+(complex&obj)
    {
        complex result;
        result.real=real+obj.real;
        result.imag=imag+obj.imag;
        return result;
    }
    void display()
    {
        cout<<real<<"+"<<imag<<"i"<<"\n";
    }
};
int main( )
{
    complex c1,c2,c3;
    cout<<"Enter first part:\n";
    c1.input();
    cout<<"Enter second part:\n";
    c2.input();
    c3=c1+c2;
    cout<<"Result after addtion:\n";
    c3.display();
}
  

๐Ÿ“˜ Explanation:

This program demonstrates operator overloading in C++. The + operator is overloaded to add two complex numbers.

  • Constructors: Default and parameterized constructors are used.
  • operator+() adds the real and imaginary parts of two complex numbers.
  • display() prints the result in proper format.

๐Ÿงพ Sample Output:

Enter first part:
Enter real part:
2
Enter imag part:
3
Enter second part:
Enter real part:
4
Enter imag part:
5
Result after addtion:
6+8i
  

๐Ÿ”‘ Keywords:

C++ program complex number addition, operator overloading in C++, OOP concepts in C++, C++ interview program, complex class in C++

๐Ÿ“Œ Hashtags:

#CPlusPlus #OperatorOverloading #ComplexNumbers #OOP #CodingInterview

๐Ÿ” Search Description:

C++ program to add two complex numbers using operator overloading. Demonstrates constructors, operator overloading, and object-oriented programming concepts.

Comments

Popular Posts

๐ŸŒ™