Posts by Sakshi Gupta
Author Biographical Info: Not available
In this tutorial, we will learn another technique of sorting i.e Merge sort. First, we will learn what is the merge sort and what is how does it uses the divide and conquer algorit.... Read More
In this tutorial, we will see how to solve Job sequencing with deadlines in C++. Initially, we will understand what the problem is and will solve it using the greedy method. The Gr.... Read More
In this tutorial, we will learn how to count the number of occurrences of an element in a linked list in c++. For example If num=3. Then the output will be it occurs 2 times. If nu.... Read More
In this tutorial, we will learn how to use a vector class without a header file in c++. Vector container implements array with fast random access with the capability to resize auto.... Read More
In this tutorial, we are going to learn to sort an array of strings given in C++ in alphabetical order.MOSTLY, we need to sort the array of strings in lexicographical order(in alph.... Read More
In this tutorial, we are going to learn how to print all possible strings of any length from a given string or a given set of characters in C++. We can also modify our code by keep.... Read More