Posts by Sakshi Gupta

Author Biographical Info: Not available

Merge sort in c++ (A Divide and Conquer algorithm)

By Sakshi Gupta

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

Job sequencing with deadlines in C++

By Sakshi Gupta

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

Count the number of occurrences of an element in a linked list in c++

By Sakshi Gupta

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

Using vector class without header file in c++

By Sakshi Gupta

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

C++ program to sort an array of strings alphabetically

By Sakshi Gupta

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

Create all possible strings from a given set of characters in c++

By Sakshi Gupta

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

Related Posts