Result: Learning Functional Data Structures and Algorithms

Title:
Learning Functional Data Structures and Algorithms
Publisher Information:
Packt Publishing 2017
Document Type:
Electronic Resource Electronic Resource
Index Terms:
Availability:
Open access content. Open access content
copyrighted
Note:
English
Contributing Source:
CYBERLIBRIS
From OAIsterĀ®, provided by the OCLC Cooperative.
Accession Number:
edsoai.on1268802922
Database:
OAIster

Further Information

Learn functional data structures and algorithms for your applications and bring their benefits to your work nowAbout This BookMoving from object-oriented programming to functional programming? This book will help you get started with functional programming.Easy-to-understand explanations of practical topics will help you get started with functional data structures.Illustrative diagrams to explain the algorithms in detail.Get hands-on practice of Scala to get the most out of functional programming.Who This Book Is ForThis book is for those who have some experience in functional programming languages. The data structures in this book are primarily written in Scala, however implementing the algorithms in other functional languages should be straight forward.What You Will LearnLearn to think in the functional paradigmUnderstand common data structures and the associated algorithms, as well as the context in which they are commonly usedTake a look at the runtime and space complexities with the O notationSee how ADTs are implemented in a functional settingExplore the basic theme of immutability and persistent data structuresFind out how the internal algorithms are redesigned to exploit structural sharing, so that the persistent data structures perform well, avoiding needless copying.Get to know functional features like lazy evaluation and recursion used to implement efficient algorithmsGain Scala best practices and idiomsIn DetailFunctional data structures have the power to improve the codebase of an application and improve efficiency. With the advent of functional programming and with powerful functional languages such as Scala, Clojure and Elixir becoming part of important enterprise applications, functional data structures have gained an important place in the developer toolkit. Immutability is a cornerstone of functional programming. Immutable and persistent data structures are thread safe by definition and hence very appealing for writing robust concurrent programs.Ho