Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Functional Data Structures in Java

Does the Java standard library have any functional data structures, like immutable Sets, Lists, etc., with functional update?

like image 624
Claudiu Avatar asked Nov 05 '09 20:11

Claudiu


People also ask

What are the five 5 different data structures in Java?

Types of Data Structures in JavaStack. Queue. Binary Tree. Binary Search Tree.

What is functional programming in Java?

The basic objective of this style of programming is to make code more concise, less complex, more predictable, and easier to test compared to the legacy style of coding. Functional programming deals with certain key concepts such as pure function, immutable state, assignment-less programming etc.

What are the 2 main types of data structures?

There are two fundamental kinds of data structures: array of contiguous memory locations and linked structures.


1 Answers

Functional java has Sets, Lists and more interesting abstractions.

like image 109
Thomas Jung Avatar answered Oct 02 '22 03:10

Thomas Jung