Skip to content

Commit b6ea3ce

Browse files
committed
README Updated
1 parent 23286bc commit b6ea3ce

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,19 @@ This is a repository containing various C++ Programs to understand the basic con
7474

7575
C++ Code for rotating the elements of the matrix by 90 degrees in clockwise direction.
7676

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.
92+

0 commit comments

Comments
 (0)