Swap nodes in a linked list without swapping data in C++

By Prabhnoor Singh

This article is about swapping nodes in a linked list without swapping data by changing links in the C++ language. What is a Linked List? A linked list is a linear data structure i.... Read More

fileinput.filename() method in Python

By Ranjeet V

In this tutorial, we will be learning about the fileinput.filename() method in Python. This method is used to get the name of the file that is currently being read by fileinput.inp.... Read More

Union in C++ with examples

By Meghana Thatikonda

In this tutorial, we will learn what is a union in C++ and its use when compared with structure. We will understand it using a few examples in C++. Union in C++ A union is a user-d.... Read More

Construction of Finite Automata in Python

By Dipam Hazra

In this tutorial, we will learn the basic concepts of finite automata and its applications. We will try to execute it in python programming. We will discuss this topic step by step.... Read More

Cartooning of an Image in Machine Learning using Python

By Akarsh Shekhar

In this tutorial program, we will learn about building Cartooning of an Image using machine learning with the language used is Python. So here I am going to discuss what are the ba.... Read More

Find angle between hour hand and minute hand in JavaScript

By Titichh Mishra

Hi there. Today we will see how to calculate the angle(in degrees) between the hour hand and minute hand of a clock using javascript. We will write our code such that you can use b.... Read More

Get all possible sublists of a list in Python

By Vamsi Krishna

In this tutorial, we shall be printing all sublists of a given list in Python. In this case, we shall be considering the same numbers also as different elements. The user feeds the.... Read More

Perform XOR on two lists in Python

By Ambuj Verma

In this tutorial, we get to know about XOR operation and perform it on two lists in the Python program. XOR stands for “exclusive or”.That is to say, the resulting bit .... Read More

Related Posts