Data Structure and Algorithm Tutorial
Home >> DSA with Python >> Data Structure and Algorithm
Edit Template
Data Structure and Algorithm Tutorial
Edit Template

Data Structure and Algorithm in Hindi

Introduction to Data Structure and Algorithm (DSA) in Hindi

अगर आप programming language सीख रहे हैं तो आपको Data Structure and Algorithm के बारे में पता होना चाहिए। यह कोई programming language नहीं है बल्कि यह हमारे program को efficient और powerful बनता है।

What is Data Structure in Hindi

Data structure का मतलब है कि हम data को organize करें ताकि हम program में से data को आसानी से access कर सके। data structure को आप container की तरह समझ सकते हैं जो data को systematically store करता है जिससे हम उस data पर कोई भी operation easily perform कर सकते हैं।

What is Algorithm in Hindi

algorithm  किसी problem को solved करने का stepwise process होता है, यह set of instruction होता है जो किसी specific task को perform करने के लिए बनाया जाता है।

Basics of Data Structure Algorithm

Time Complexity : एक algorithm को run होने में कितना time लगेगा इसको measure करने को time complexity कहते है। 

Space Complexity :  एक algorithm को run करने की लिए कितना memory space चाहिए इसे measure करने को space complexity कहते है।

Big O Notation : जब input size बढ़ाया जाएगा तो किसी algorithm का perform कैसे change होगा इसको repragentation को big o notation कहते है।

Add a comment...

  • All Posts
  • Artificial Intelligence
  • Computer Fundamentals
  • Computer Networks
  • Data Analytics
  • Data Science
  • DBMS
  • Deep Learning
  • Digital Fundamentals
  • DSA with Python
  • Excel
  • Exercise
  • Git & Github
  • Machine Learning
  • Matplotlib
  • Natural Language Processing
  • NumPy
  • Operating System
  • Pandas-s
  • Power BI
  • Python Tutorial
  • Scikit-learn
  • Seaborn
  • SQL & MySQL
Python Function

Table of Contents All Chapters 1. Python Function 2. Define Function 3. Function Arguments 4. Function Parameters 5. Local and...

Python Dictionary

Table of Contents All Chapters 1. Python Dictionary 2. Access Dictionary items 3. Change Dictionary items 4. Add items in...

Python Set

Table of Contents All Chapters 1. Python Set 2. Iterate Set items 3. Set Methods      3.1. Add items...

Python Tuple

Table of Contents All Chapters 1. Python Tuple 2. Access Tuple Items 3. Update Tuple 4. Iterate Tuple Items 5....

Python List

Table of Contents All Chapters 1. Python List 2. Nested List 3. Range List 4. List Indexing 5. list Methods...

Python String

Table of Contents All Chapters 1. Python String 2. String Indexing 3. String Slicing 4. String Concatenation 5. String Formatting...

Python Loops

Table of Contents All Chapters 1. Python Loops 2. While Loop      2.1. Nested While Loop 3. For Loop...

Edit Template
Scroll to Top