Computational geometry to triangulate a set of points in a plane or in higher dimensions is not an easy task but we can perform this… Read More
Category Archives: Java Programs
The set packing problem is a type of combinatorial optimization problem that involves selecting a subset of sets from a given collection of sets such… Read More
Polygons are basic shapes in geometry and can have many sides. Finding the Area of a Polygon is a complex task, So to perform this… Read More
Star, number, and character patterns are the most asked Java Pattern Programs in interviews to check your logical and coding skills. Pattern programs in Java… Read More
To write a List<String> to a text file after deleting a specific string, you can use the following steps: Iterate through the List<String> and use… Read More
An applet is a Java program that can be embedded into a web page. Applets are small Java applications that can be accessed on an… Read More
Given some Strings as Email addresses, the task is to extract the domain name from it Examples: Input: test_str = ‘team@geeksforgeeks.org’ Output: geeksforgeeks.org Explanation: Domain… Read More
Prerequisites: Regular Expressions IP address Given a string str, the task is to extract all the IP addresses from the given string. Let us see… Read More
Problem statement: Given an initial point x_0 and a function f(x), we want to find the local optima of the function using the conjugate method.… Read More
Bandwidth reduction on graphs refers to techniques used to reduce the amount of data that needs to be transmitted or stored in order to represent… Read More
Multithreading is a concept in which our program can do two or more tasks at the same time. Thread is the execution unit of any… Read More
Multithreading is a concept in which our program can do multiple tasks in a single unit of time. Thread is the execution unit of any… Read More
The Java util package has a queue interface that defines the queue interface which has methods defined for methods in a queue. The general implementation… Read More
The steepest descent method is an optimization algorithm that can be used to find the local minimum of a differentiable function. It is an iterative… Read More
MultiSet is a generalization of the concept of a set. Its main idea is to allow a member of a multiset to have zero, one,… Read More

