Skip to content

Commit 7e04210

Browse files
authored
Merge pull request #1406 from CodeHarborHub/dev-3
Added SEO in DSA intro
2 parents 9e46474 + a1640ed commit 7e04210

File tree

4 files changed

+51
-2
lines changed

4 files changed

+51
-2
lines changed

dsa/basic-topics/introduction.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,55 @@ tags: [data-structures, algorithms, introduction, basics, dsa]
77
description: 'An introduction to Data Structures and Algorithms (DSA) and why they are important in computer science.'
88
---
99

10+
<head>
11+
<meta name="description" content="Explore the fundamentals of data structures and algorithms, including their importance, types, and practical applications. A comprehensive introduction for beginners." />
12+
<meta name="keywords" content="Data Structures, Algorithms, Introduction to Data Structures, Introduction to Algorithms, Algorithm Basics, Data Structure Types, Algorithm Efficiency, Programming, Computer Science" />
13+
<meta name="author" content="ajay-dhangar" />
14+
<meta name="og:title" content="Introduction to Data Structures and Algorithms" />
15+
<meta name="og:description" content="Explore the fundamentals of data structures and algorithms, including their importance, types, and practical applications. A comprehensive introduction for beginners." />
16+
<meta name="og:url" content="https://codeharborhub.github.io/dsa/basic-topics/introduction-to-data-structures-and-algorithms" />
17+
<meta name="og:image" content="https://codeharborhub.github.io/dsa/assets/images/introduction-to-data-structures-and-algorithms.png" />
18+
<meta property="og:type" content="article" />
19+
20+
<meta name="twitter:card" content="summary_large_image" />
21+
<meta name="twitter:title" content="Introduction to Data Structures and Algorithms" />
22+
<meta name="twitter:description" content="Explore the fundamentals of data structures and algorithms, their types, and practical applications. Perfect for beginners in computer science." />
23+
<meta name="twitter:image" content="https://codeharborhub.github.io/dsa/assets/images/introduction-to-data-structures-and-algorithms.png" />
24+
<meta name="twitter:site" content="@CodesWithAjay" />
25+
<meta name="twitter:creator" content="@CodesWithAjay" />
26+
<meta name="twitter:url" content="https://codeharborhub.github.io/dsa/basic-topics/introduction-to-data-structures-and-algorithms" />
27+
<meta name="twitter:label1" content="Written by" />
28+
<meta name="twitter:data1" content="Ajay Dhangar" />
29+
<meta name="twitter:label2" content="Filed under" />
30+
<meta name="twitter:data2" content="Data Structures and Algorithms" />
31+
<meta name="twitter:label3" content="Read Time" />
32+
<meta name="twitter:data3" content="5 minutes" />
33+
<meta name="twitter:label4" content="Share on" />
34+
<meta name="twitter:data4" content="Twitter, Facebook, LinkedIn" />
35+
<meta name="twitter:label5" content="Likes" />
36+
<meta name="twitter:data5" content="20+" />
37+
<meta name="twitter:label6" content="Comments" />
38+
<meta name="twitter:data6" content="10+" />
39+
<meta name="twitter:label7" content="Views" />
40+
<meta name="twitter:data7" content="100+" />
41+
<meta name="twitter:label8" content="Published" />
42+
<meta name="twitter:data8" content="2024-06-16" />
43+
<meta name="twitter:label9" content="Modified" />
44+
<meta name="twitter:data9" content="2024-06-16" />
45+
<meta name="twitter:label10" content="Twitter" />
46+
<meta name="twitter:data10" content="@CodesWithAjay" />
47+
<meta name="twitter:label11" content="GitHub" />
48+
<meta name="twitter:data11" content="@ajay-dhangar" />
49+
<meta name="twitter:label12" content="Website" />
50+
<meta name="twitter:data12" content="https://ajay-dhangar.github.io/" />
51+
<meta name="twitter:label13" content="Email" />
52+
<meta name="twitter:data13" content="ajaydhangar49@gmail.com" />
53+
<meta name="twitter:label14" content="Location" />
54+
<meta name="twitter:data14" content="India" />
55+
<meta name="twitter:label15" content="Job Title" />
56+
<meta name="twitter:data15" content="Software Engineer" />
57+
</head>
58+
1059
Data Structures and Algorithms (DSA) is a fundamental part of computer science. It is the study of data structures and algorithms that are used to solve problems. Data structures are a way of organizing and storing data so that it can be accessed and modified efficiently. Algorithms are a set of instructions that are used to solve problems.
1160

1261
## Why Study Data Structures and Algorithms?

dsa/basic-topics/time-complexity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sidebar_position: 2
1515
<meta property="og:description" content="A comprehensive guide to time complexity in algorithms, covering different types, Big O notation, analysis techniques, and practical examples." />
1616
<meta property="og:type" content="article" />
1717
<meta property="og:url" content="https://codeharborhub.github.io/dsa/basic-topics/time-complexity/" />
18-
<meta property="og:image" content="https://codeharborhub.github.io/img/nav-logo.jpg" />
18+
<meta property="og:image" content="https://codeharborhub.github.io/dsa/assets/images/time-complexity.png" />
1919
<meta property="og:site_name" content="CodeHarborHub" />
2020
<meta property="og:locale" content="en_US" />
2121

@@ -118,7 +118,7 @@ Let's look at some practical examples of time complexity in algorithms:
118118

119119
## Conclusion
120120

121-
Understanding time complexity is crucial for designing efficient algorithms and evaluating their performance.
121+
Time complexity is an essential concept in computer science that is used to analyze the efficiency of algorithms. By understanding time complexity, you can determine how the running time of an algorithm grows as the size of the input increases. This knowledge is crucial for designing efficient algorithms and optimizing code for performance. By using Big $O$ notation and common analysis techniques, you can analyze the time complexity of algorithms and make informed decisions about algorithm design and implementation.
122122

123123
---
124124

Loading
2.56 MB
Loading

0 commit comments

Comments
 (0)