Programming Articles - Page 350 of 3363

Sort and Search an Element in Java

Shriansh Kumar
Updated on 05-May-2023 18:16:52

3K+ Views

Sorting and searching are the basic operations we can perform on arrays. Sorting means rearranging the elements of a given list or array in ascending or descending order whereas searching means finding an element or its index in a list. Although various algorithms are available to perform these operations, in this article, we will use a few of them to sort and search an element in java. One by one we will look at them. Approach 1: Using inbuilt methods of Arrays In this section, we will discuss the following methods that helps in sorting and searching of elements in ... Read More

StreamCorruptedException in Java

Shriansh Kumar
Updated on 12-May-2023 16:51:50

636 Views

In java, StreamCorruptedException occurs when problem is found with the data being read from or written to a stream. The problem may be the data we are reading or writing is in the wrong format or contains errors. If the format of given file is not correct. When stream has been closed unexpectedly or the data has been partially overwritten. In this article, we will talk about StreamCorruptedException with examples. But before moving on it is important to understand streams and few of its method that we are going to use in examples. Program to handle StreamCorruptedException Streams Stream ... Read More

Java Program for Case Specific Sorting

Shriansh Kumar
Updated on 01-Aug-2024 10:49:54

856 Views

Suppose you have a String that contains uppercase and lowercase characters both. We have to sort this given string in case specific order which means if the ith position in the given string had an uppercase letter then the newly sorted string must have uppercase letter at that position and same goes for lowercase letters. Also, both lowercase and uppercase letters will be in sorted order separately. In this article, we will try to find the solution for the given problem. First, let's understand the given problem with an example for better understanding. Example Scenario Input: String st = ... Read More

StrictMath subtractExact() in Java With Examples

Shriansh Kumar
Updated on 05-May-2023 18:11:13

199 Views

In java, the subtractExact() is a static method of the class StrictMath. It is available in ‘java.lang’ package. In this article, we will discuss StrictMath and some of its inbuilt methods. We will also see the implementation of subtractExact() method and how it is different from other methods of this class. StrictMath Class in Java StrictMath is a final class that extends object class. We can use its methods without creating instance because all the methods of this class are static and we can call a static method without an object. To call a Static Mehtod Class_name.static_method_name To ... Read More

Java Program for Search an element in a sorted and rotated array

Shriansh Kumar
Updated on 05-May-2023 18:04:44

480 Views

Suppose you have a sorted array with no duplicate values and from a certain index this array is rotated. You have to search for a particular element in it. If it is available in the array then return the index otherwise return -1. In this article, we will solve the given problem using two approaches Linear search and Binary search. Approach 1: Using Linear Search This approach will search for the given element in sequential manner. Algorithm Step 1 − First, declare and initialize an array named ‘araylist’ and an integer variable named ‘searchElem’ that we are going ... Read More

StringJoiner Class vs String.join() Method to Join String in Java

Shriansh Kumar
Updated on 05-May-2023 18:01:43

800 Views

There are numerous ways of joining strings in java. The StringJoiner class and String.join() method are two of them. Both are used to join two or any number of strings but the difference lies in their implementation. In this article, we will try to find the differences that exist in the usage of StringJoiner class and String.join() method. StringJoiner Class It is a class available in java.util package and it is added from JDK 8. We can join multiple strings at a time. Before using, it is necessary to import it into our program using the following command ... Read More

Scanner and nextChar() in Java

Shriansh Kumar
Updated on 05-May-2023 17:59:18

5K+ Views

Scanner is a class available in ‘java.util’ package used to take input from numerous sources like a file, or console. The most common source of taking input is from standard input i.e. keyboard. The scanner class has few methods to take input of primitives and strings from the keyboard. We will understand scanner class and its various methods through this article. Scanner and nextChar() The following methods of Scanner class is used to take input − nextInt() − To take integer as an input. nextLong() − To take long as an input. nextDouble() − To take double as an ... Read More

String Arrays in Java

Shriansh Kumar
Updated on 05-May-2023 17:57:50

2K+ Views

String and Arrays are two distinct things. Array is a linear data structure that is used to store group of elements with similar datatypes but a string is a class in Java that stores a series of characters. Those characters are actually String-type objects. Since strings are objects we can say that string arrays are group of string-type objects. In this article, we will understand string arrays in java and perform some operations on them. String Arrays The string array is a combination of array and string both. Therefore, it has the properties of both array and string such ... Read More

Storage of String in Java

Shriansh Kumar
Updated on 05-May-2023 17:55:07

468 Views

A string is a class in Java that stores a series of characters. Those characters are actually String-type objects. The value of string is enclosed within double quotes. The string class is available in java.lang package. In this article, we will look into the storage mechanism of strings in java. String and Storage of String To create strings − Syntax String nameOfobject = “ values ”; Instance 1 String st1 = “Tutorix and Tutorialspoint”; Here, ‘st1’ is the reference variable and its values are in double quotes. We can also use new keyword to create ... Read More

Python Program to Merge Two Arrays

Nikhitha Chowdary Manne
Updated on 05-May-2023 16:55:23

30K+ Views

The process of combining the elements of the given arrays is known as merging. This operation can be done in many ways using many techniques. Let us discuss all techniques that help in merging the given arrays in Python. Before getting into the techniques, let us understand how merging of arrays takes place with a simple Input output scenario. Input Output Scenario Consider two arrays arr1 and arr2. arr1 = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ] arr2 = [ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ] Now, the merged ... Read More

Advertisements