Matrix Exponentiation in C++

By Vikash Agarwal

In this tutorial, we will learn about Matrix Exponentiation and apply it to solve linear recurrences in one variable with C++. Given a linear recurrence relation in one variable al.... Read More

Weighted Program Scheduling Problem in C++

By Vikash Agarwal

In this tutorial, we will learn about the Weighted Program Scheduling Problem in C++ programming. We will limit our discussion to scheduling programs in a single-core processor. Gi.... Read More

Longest Unique Substring using Sliding Window in C++

By Vikash Agarwal

In this tutorial, we will learn about the concept of Sliding Window and apply it to solve the Longest Unique Substring problem. Given a string, the task is to find the longest uniq.... Read More

Reverse a linked list using STL stack in C++

By Anurag Tiwari

In this tutorial, we will learn how to reverse a linked list using stack in STL in C++. Reversing of linked list can be done by many methods but using stacks is the easiest of all..... Read More

How to write your own atoi function in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to write atoi function in C++. First, understand about atoi function then we will see an example and then we will see the implementat.... Read More

Super keyword in Java with examples

By Ranjeet V

Hello everyone, in this tutorial, we will talk about the super keyword in Java. The super keyword in Java is used as a reference variable. It can be used to refer to the parent cla.... Read More

The Javascript Prototype in action: Creating your own classes

By Abhishek Swaminathan

In my previous post, I had briefly introduced the concept of the Prototype in Javascript. In this post, we are going to learn how to use it with a practical example. We are going t.... Read More

Check for the standard password in Python using Sets

By HIMANSHU ZAVERI

In this post also we will check whether the password is in standard format or not in Python. But unlike the previous post, this time we will use sets and their in-built functions. .... Read More