Sort an array in wave form in Java

By Kunal Kamble

In this tutorial we will study sorting the array in the form of a wave termed wave sort and write code for it in Java. The term wave itself is self-explanatory that the element of .... Read More

How to loop over an array in C++

By HARI HARAN B

Arrays are the most versatile and frequently used data structures that are used to store several values of the same datatype under the same name. This article is about accessing el.... Read More

Java program to swap two nibbles in a byte

By Kunal Kamble

In this tutorial, we will learn to swap two nibbles in a byte and also write its code in Java. A byte is a combination of 8 bits and one nibble consists of 4-bits. Hence every byte.... Read More

Find the first repeating element in an array of integers in Python

By Kunal Kamble

In this tutorial, we will learn how to find the first repeating element in an array in Python. Considering an array of N elements, we need to find the first element which has more .... Read More

How to merge two binary max heaps in Python

By Khushi Aswani

In this tutorial, we will see what is max heap and how to merge two binary max heaps in Python. The answer of our first question, a max heap is a complete binary tree in which the .... Read More

Create Separate Routes File in Node Express.js

By HETVI JAIN

This tutorial will teach you how to create a separate route file in Node.js. Routing describes how an application’s endpoints (URIs) respond to client requests. You define ro.... Read More

File upload on FTP server using Java

By Rohan Sethi

In this tutorial, let us learn about uploading files from your local computer to a remote FTP server in Java. The content covered, highlights the ease with which the files are uplo.... Read More

Use of strncat() in C++ with examples

By YANNAM SATYA AMRUTHA

In this discussion, let’s clearly understand the primary purpose of the strncat() function in C++ and in which scenarios we are going to use it, with some examples. strncat().... Read More

Related Posts