You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -74,3 +74,19 @@ This is a repository containing various C++ Programs to understand the basic con
74
74
75
75
C++ Code for rotating the elements of the matrix by 90 degrees in clockwise direction.
76
76
77
+
*[Finding Pair of Elements with given Sum in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/pair_with_given_sum.cpp):
78
+
79
+
C++ Code for finding the pair of elements in an array whose sum is equal to a particular sum entered by the user.
80
+
81
+
*[Finding Pair of Elements with given Sum in an Array using Hashing Method](https://github.com/altruistcoder/Data-Structures/blob/master/pair_with_given_sum_hashing.cpp):
82
+
83
+
C++ Code for finding all the pairs of elements in an array whose sum is equal to a particular sum entered by the user by using the hashing set method.
84
+
85
+
*[Finding the Pythgorean Triplets present in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/find_pythagorean_triplet_in_array.cpp):
86
+
87
+
C++ Code for finding the triplet of elements present in an array which act as a Pythagorean Triplet.
88
+
89
+
*[Generating the Pythgorean Triplets till a particular Limit](https://github.com/altruistcoder/Data-Structures/blob/master/generate_pythagorean_triplet.cpp):
90
+
91
+
C++ Code for generating the Pythagorean Triplets having values less than a limit entered by a user.
0 commit comments