Pinned Repositories
Minimum-Spanning-Tree-
Climate-App-Android-Flutter
This is an android app made using flutter as a part of my learning process of Flutter. In coming days i will make few more changes in it to integrate features.
Go-Social-Chat-App
The goal of this project is to learn flutter app development. Users can register themselves using their email and password only. And then share a common chat interface where they can be socially avaliable to every other user registered on this app.
BFS-AND-DFS-TRAVERSALS
Shortest-Path-Problem
Array-unordered-operations
BMI-calculator-Android
BST-BINARY-SEARCH-TREE-
Operations on BST ----->>i) INSERT NODE ii)DELETE NODE iii)SEARCH NODE
Classification-in-data-mining
Clustering-in-data-mining
Aditya-Saha's Repositories
Aditya-Saha/My-Todo
Add list of todo items mark them as done or undone and long press to delete them.
Aditya-Saha/Go-Social-Chat-App
The goal of this project is to learn flutter app development. Users can register themselves using their email and password only. And then share a common chat interface where they can be socially avaliable to every other user registered on this app.
Aditya-Saha/Climate-App-Android-Flutter
This is an android app made using flutter as a part of my learning process of Flutter. In coming days i will make few more changes in it to integrate features.
Aditya-Saha/BMI-calculator-Android
Aditya-Saha/Gauss-Seidel
Aditya-Saha/R-K-method-4th-order-
Aditya-Saha/Euler-Method
Aditya-Saha/MergeSort
Aditya-Saha/Dijkstra-Algorithm
Aditya-Saha/Quick-Sort
Aditya-Saha/Random-Number-Generator
This code generates random number in c without using any built-in functions and avoiding the use of loops and multiplication.
Aditya-Saha/Classification-in-data-mining
Aditya-Saha/Clustering-in-data-mining
Aditya-Saha/Regression-Linear-and-Logistic-
Aditya-Saha/Tower-of-Hanoi
Aditya-Saha/BFS-AND-DFS-TRAVERSALS
Aditya-Saha/BST-BINARY-SEARCH-TREE-
Operations on BST ----->>i) INSERT NODE ii)DELETE NODE iii)SEARCH NODE
Aditya-Saha/Minimum-Spanning-Tree-
Aditya-Saha/Shortest-Path-Problem
Aditya-Saha/HOUR-GLASS-PROBLEM
From a 2D ARRAY we have to calculate maximum sum of hourglass .In this code an attempt is made to allocate the 2d array dynamically.
Aditya-Saha/mathematical-methods-for-finding-roots-of-polynomial-bisection-newton-ralphson-regula-falsi-secant-m
Aditya-Saha/Array-unordered-operations
Aditya-Saha/QUEUE
Aditya-Saha/STACK
Aditya-Saha/LINKED-LIST
Objective: Realization of Singly Linked List operations. Multi-level menu design & Modular programming. Problem Statement: Write a multi level Menu Driven program in C to perform the following operations on Singly Linked-List. Assume that, the Linked-List may be Unordered or Ordered. Use a variable to indicate the Linked-List is ordered or unordered with the value 0 means un-ordered List 1 means the List is arranged in ascending order. 2 means the List is arranged in descending order. 1. Display the content of the Linked-List along with node address. 2. Insert a value into the Linked-List as per the order/ un-order. In case of un- ordered list do the followings: 1. Prepend 2. Append 3. After a specific given value 4. Before a specific given value 5. After the maximum value of the list 6. Before the minimum value of the list 3. Search a value in the Linked-List as per the order/ un-order. 4. Search the number of occurrences of a given value from the Linked-List, store the results(node addresses) in another linked list. 5. Delete a given value from the Linked-List as per the order/ un-order. 6. Delete minimum value from the Linked-List(only for un-ordered list) 7. Remove all repeated occurrence from the Linked-List. 8. Concatenation of two un-ordered Linked List.