Rudradev Das has Published 75 Articles

Java Program to Search an Element in a Circular Linked List

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 15:01:43

390 Views

What are Liked List and Circular Linked List? Linked list is data structure in which every node contains two parts, a data and address path. These parts point to a next node, which always creates an interlinking with previous nodes. Based on this, a circular linked list is where ... Read More

Java Program to Rotate an Image

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:57:24

3K+ Views

A image file can rotated clockwise or anticlockwise direction. To rotate an image it is needed to download a random image file and save it in any folder on your system. Further, a .pdf file is required to create and rotate some degrees after opening the downloaded image in that ... Read More

Java Program To Reverse A Number And Find the Sum of its Digits Using Do-While Loop

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:53:26

3K+ Views

What Is A Do-While Loop? Do-while loop is a Java environment used to iterate a portion of a code in a repeat manner. The process will run in a continuous way until the specified condition becomes satisfied as a true condition. It is always recommended for a do-while loop to ... Read More

Java Program To Reverse A Linked List Without Manipulating Its Pointers

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:36:14

2K+ Views

Linked List and Pointers In Java Linked list is liner data structure in Java environment, which use to store the elements in an adjacent manner. A linked list contains with some addresses and pointers which are used to create a link between the elements present in a list. There ... Read More

Java Program to Return the Largest Element in a List

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:31:37

4K+ Views

We can use an array loop to return back the largest element from a list. Primarily this method, known as the comparison model. The maximum number present here in a certain list will be compared with the all elements present in that particular list. The process considers “n” as a ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements