Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arindam2003/cpp_dsa

This Repo Contains Data Structures and Algorithm in C++ in organize manner. It have all Problem from Basic to Advanced and Compititie Program
https://github.com/arindam2003/cpp_dsa

cpp data-structures data-structures-and-algorithms dsa dsa-algorithm dsa-cpp

Last synced: 27 days ago
JSON representation

This Repo Contains Data Structures and Algorithm in C++ in organize manner. It have all Problem from Basic to Advanced and Compititie Program

Awesome Lists containing this project

README

        

# C++
Contain C+++ Programs...

👉Basics_C++

- [1. Hello World with NewLine](./Basics_cpp/print_hello.cpp)
- [2. Sum of Two Number](./Basics_cpp/sum_two.cpp)
- [3. Area of Circle](./Basics_cpp/area_circle.cpp)
- [4. Volume of Cuboid](./Basics_cpp/volume_cuboid.cpp)
- [5. Average of three Number](./Basics_cpp/avg_three.cpp)
- [6. Square of Number](./Basics_cpp/square_number.cpp)
- [7. Swap without using third variable](./Basics_cpp/swap_without_3rd.cpp)
- [8. Maximum of two Number](./Basics_cpp/max_two_number.cpp)
- [9. Sum of 10 Numbers in an array](./Basics_cpp/add_array_of_10.cpp)

👉Functions in C++

- [1. Prime Number in Range](./Function_Cpp/print_prime_range.cpp)
- [2. Highest value digit in Number](./Function_Cpp/highest_digit_number.cpp)
- [3. X raised to the power Y](./Function_Cpp/x_tothepower_y.cpp)
- [4. Pascal Triangle](./Function_Cpp/pascal_triangle.cpp)
- [5. Find number in Fibo Series](./Function_Cpp/find_fibo.cpp)
- [6. Add 2 or 3 Number using Default Argument](./Function_Cpp/add_2_3_default.cpp)
- [7. Area of Circle,Rec,Tri](./Function_Cpp/area_cir_rec_tri_overloading.cpp)
- [8. Diffrent Argument Passing](./Function_Cpp/diffrent_arg.cpp)

👉Classes and Objects in C++

- [1. Complex Number Class and Object with Add,Subs](./Classes_Object/complex_number.cpp)
- [2. Time Class and Object](./Classes_Object/time.cpp)
- [3. Date get and set Object](./Classes_Object/date.cpp)
- [4. Circle get set and return Object](./Classes_Object/circle.cpp)

👉🏻Member Function C++

- [1. Complex Number Add](./Member_Function/Complex_Number.cpp)
- [2. Time Normalize and Greater](./Member_Function/Time.cpp)
- [3. Test Result](./Member_Function/TestResult.cpp)

# Data-Structures Using c++
Collection of Data Structure Implement in C++...

✅Array Data Structure in C++

- [1. Modified Array-->insert,delete,append,edit,count,get_element,deallocate,find_element](./Array_Data_Structure/modified_array.cpp)
- [2. On Modified Array-->Copy Constructor and Copy Assignment Operator](./Array_Data_Structure/copy_const_modified.cpp)
- [3. Dynamic Array With Double and Half Array Concept](./Array_Data_Structure/Dynamic_Array.cpp)

✅Linked List

- [1. Singly Linked List All](./Linked_List_Data_Structure/singly_linked_list.cpp)
- [2. Doubly Linked List All](./Linked_List_Data_Structure/doubly_linked_list.cpp)
- [3. Circular Linked List With Start Pointer](./Linked_List_Data_Structure/circular_linked_list.cpp)

- [5. Doubly Circular Linked List](./Linked_List_Data_Structure/Circular_Doubly_LL.cpp)

✅Stack

- [1. Stack Using Array](./Stack_Data_Structure/stack_using_array.cpp)
- [2. Stack Using Linked List](./Stack_Data_Structure/stack_using_linked_list.cpp)

✅Queue

- [1. Queue Using Array](./Queue_Data_Structure/queue_using_array.cpp)
- [2. Queue_using_array_best](./Queue_Data_Structure/Queue_array_best.cpp)


# Final-450-Question
To Solve Real World Problem It's Needed...

⭐️Array

- [1. Revese an Array](./Final_450/Reverse_array_string.c)
- [2. Max and Min in Array Return](./Final_450/Max_and_Min_array.cpp)
- [3. Rotate by One](./Final_450/Rotate_by_one.cpp)
- [4. Find the Duplicate Number](./Final_450/Find_Duplicate.cpp)