Java

Jump Search Algorithm In Java

Jump search algorithm is a pretty new algorithm to search for an element in a sorted array. The idea of…

1 year ago

Leetcode Count Complete Tree Nodes Java Solution

Given a complete binary tree, count the number of nodes. Note: Definition of a complete binary tree from Wikipedia:In a complete binary tree…

2 years ago

Leetcode 3 Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer…

2 years ago

Leetcode 2 Add Two Numbers Java Solution

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain…

2 years ago

Leetcode 23: Merge K Sorted Lists (Java)

Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Example: Input: [   1->4->5,…

2 years ago

Arrays In Java With Example

The array is a data structure provided by Java which holds elements of the same data type with a fixed…

2 years ago

Tracing With Spring Sleuth And Zipkin For Micro Services

As microservice architecture has become a standard for all the latest distributed systems, the tracing of the calls from one…

2 years ago

Java ArrayList With Example

ArrayList is a resizable implementation of List interface, ArrayList can also be called as a dynamic Array. Like Array, ArrayList…

2 years ago

Netflix Eureka Server And Client Setup With Spring Boot

Overview We will set up a Eureka server (service registry used to register multiple services/microservices).We will set up multiple Eureka…

2 years ago

Java Datatypes

What is a Datatype?A data type is an attribute of data that tells the compiler or interpreter how the programmer…

2 years ago

This website uses cookies.