0

Do you know what is DSA

Hello , Do you know what is Data structure,algorithms , Time and space complexity ? If you do please post it as comment

10th Jan 2025, 2:55 AM
Sayooj pp
Sayooj pp - avatar
2 Réponses
+ 2
Data Structure and Algorithms Do you have a specific question related and if so is it a code that has issues 🤔 The question and answer forum is for code related issues per guidelines. Community created lesson https://www.sololearn.com/learn/773/?ref=app Welcome to Sololearn https://www.sololearn.com/discuss/1316935/?ref=app https://www.sololearn.com/discuss/3021159/?ref=app https://www.sololearn.com/discuss/333866/?ref=app
10th Jan 2025, 4:58 AM
BroFar
BroFar - avatar
+ 1
Data Structures (DS) Data Structures are ways to organize and store data in a computer so that it can be efficiently accessed, modified, and manipulated. Common examples include: - Arrays - Linked Lists - Stacks - Queues - Trees (Binary Trees, AVL Trees, etc.) - Graphs - Hash Tables Algorithms Algorithms are step-by-step procedures to solve problems or perform specific tasks. They take input, process it, and produce output. Examples include: - Sorting Algorithms (Bubble Sort, Selection Sort, etc.) - Searching Algorithms (Linear Search, Binary Search, etc.) - Graph Algorithms (DFS, BFS, etc.) - Dynamic Programming Algorithms Time Complexity Time Complexity measures the amount of time an algorithm takes to complete as a function of the input size. It's usually expressed using Big O notation. Common examples include: - O(1) - Constant Time Complexity - O(log n) - Logarithmic Time Complexity - O(n) - Linear Time Complexity - O(n log n) - Linearithmic Time Complexity - O(n^2) - Quadratic Time Complexity - O
10th Jan 2025, 3:05 PM
Anuhya
Anuhya - avatar