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
C++ Code for performing decreasing frequency-wise sorting of a given array.
87
110
111
+
88
112
*[Checking Sorting of Array with atmost One Swapping of Elements](https://github.com/altruistcoder/Data-Structures/blob/master/check_sort_one_swap.cpp):
89
113
90
114
C++ Code for checking whether it is possible or not to sort the given array by doing atmost one swapping of elements of array.
91
115
116
+
92
117
*[Anti-Clockwise Rotation of Array by 90 ](https://github.com/altruistcoder/Data-Structures/blob/master/90_degree_rotate_matrix.cpp):
93
118
94
119
C++ Code for rotating the elements of the matrix by 90 degrees in anti-clockwise direction.
@@ -98,50 +123,62 @@ This is a repository containing various C++ Programs to understand the basic con
98
123
99
124
C++ Code for rotating the elements of the matrix by 90 degrees in clockwise direction.
100
125
126
+
101
127
*[Finding Pair of Elements with given Sum in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/pair_with_given_sum.cpp):
102
128
103
129
C++ Code for finding the pair of elements in an array whose sum is equal to a particular sum entered by the user.
104
130
131
+
105
132
*[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):
106
133
107
134
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.
108
135
136
+
109
137
*[Finding the Pythgorean Triplets present in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/find_pythagorean_triplet_in_array.cpp):
110
138
111
139
C++ Code for finding the triplet of elements present in an array which act as a Pythagorean Triplet.
112
140
141
+
113
142
*[Generating the Pythgorean Triplets till a particular Limit](https://github.com/altruistcoder/Data-Structures/blob/master/generate_pythagorean_triplet.cpp):
114
143
115
144
C++ Code for generating the Pythagorean Triplets having values less than a limit entered by a user.
116
145
146
+
117
147
*[Number Occurring Odd no. of Times in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/number_occurring_odd_times.cpp):
118
148
119
149
C++ Code for finding the number which occurs odd no. of times in the given array.
120
150
151
+
121
152
*[Largest Contiguous Sum in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/largest_contiguous_array_sum.cpp):
122
153
123
154
C++ Code for finding the largest contiguous sum present in the given array.
124
155
156
+
125
157
*[Segregate 0s and 1s in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/segregate_0_1.cpp):
126
158
127
159
C++ Code for segregating 0s and 1s in the given array.
128
160
161
+
129
162
*[Second Largest Element in an Array](https://github.com/altruistcoder/Data-Structures/blob/master/second_largest_in_array.cpp):
130
163
131
164
C++ Code for finding the second largest element present in the given array.
132
165
166
+
133
167
*[First Non-Repeating Character in an String](https://github.com/altruistcoder/Data-Structures/blob/master/first_non_repeating_character.cpp):
134
168
135
169
C++ Code for finding the first non-repeating character present in the given string.
136
170
171
+
137
172
*[Remove Duplicates from a Sorted Array](https://github.com/altruistcoder/Data-Structures/blob/master/remove_duplicates_sorted_array.cpp):
138
173
139
174
C++ Code for removing duplicate elements present in a sorted array.
140
175
176
+
141
177
*[Check Binary Representation of a number is Palidrome or not](https://github.com/altruistcoder/Data-Structures/blob/master/binary_palindrome.cpp):
142
178
143
179
C++ Code for checking whether binary representation of a number is palindrome or not.
144
180
181
+
145
182
*[Check whether two strings are anagrams of each other](https://github.com/altruistcoder/Data-Structures/blob/master/check_anagrams.cpp):
146
183
147
184
C++ Code for checking whether two given strings are anagrams of each other.
0 commit comments