Generic Data Structures and Algorithms in Go
eBook - ePub

Generic Data Structures and Algorithms in Go

An Applied Approach Using Concurrency, Genericity and Heuristics

  1. English
  2. ePUB (mobile friendly)
  3. Only available on web
eBook - ePub

Generic Data Structures and Algorithms in Go

An Applied Approach Using Concurrency, Genericity and Heuristics

Book details
Table of contents
Citations

About This Book

Advance your understanding of generic data structures and algorithms and their applications using Go and the effective use of concurrency. You are invited on a journey that aims to improve your programming and problem-solving skills. This book takes you to the next step by showing how to get your programs to work efficiently as well as correctly.
As you explore many data structures and the algorithms and applications associated with them, you'll focus on the trade-offsbetween speed and storage and the benefits of deploying concurrency when appropriate. This book will demonstrate the huge increases in application performance that are possible. The presentation of classic data structures and techniques of algorithm design (greedy, divide and conquer, branch-and-bound to name a few) provides an essential foundation and toolkit for problem solving. But this book goes further by presenting heuristic algorithms and their implementations forsolving computationally intractable combinatoricoptimization problems such as the travelling salesperson problem.Simulated annealing and genetic algorithms are among the techniques used.
The consistent style of coding used throughout this book exploits Go's ability to implement abstract, generic and constrained generic data types without the use of classes.Although some familiarity with Go is assumed, this book should advance your ability to use Go to tackle server-side applications, games, machine learning, information retrieval and other application domains where speed and storage efficiency is essential.
What You'll Learn

  • Explore classical data structures and algorithms aimed at making your applications run faster or require less storage
  • Use the new generic features of Go to build reusable data structures
  • Utilize concurrency for maximizing application performance
  • See the power of heuristic algorithms for computationally intractable problems
  • Enhance and improve your Go programming skills

Who This Book Is For
Practicing Go software developers and students who wish to advance their programming and problem-solving skills and experience the excitement and see the benefits of using generic data structures and algorithms that utilize concurrency whenever possible.

Frequently asked questions

Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes, you can access Generic Data Structures and Algorithms in Go by Richard Wiener in PDF and/or ePUB format, as well as other popular books in Computer Science & Programming Languages. We have over one million books available in our catalogue for you to explore.

Information

Publisher
Apress
Year
2022
ISBN
9781484281918

Table of contents

  1. Cover
  2. Front Matter
  3. 1. A Tour of Generics and Concurrency in Go
  4. 2. Algorithm Efficiency: Sorting and Searching
  5. 3. Abstract Data Types: OOP Without Classes in Go
  6. 4. ADT in Action: Game of Life
  7. 5. Stacks
  8. 6. Queues and Lists
  9. 7. Hash Tables
  10. 8. Binary Trees
  11. 9. Binary Search Tree
  12. 10. AVL Trees
  13. 11. Heap Trees
  14. 12. Red-Black Trees
  15. 13. Expression Trees
  16. 14. Ecological Simulation with Concurrency
  17. 15. Dynamic Programming
  18. 16. Graph Structures
  19. 17. Travelling Salesperson Problem
  20. 18. Branch-and-Bound Solution to TSP
  21. 19. Simulated Annealing Heuristic Solution to TSP
  22. 20. Genetic Algorithm for TSP
  23. 21. Neural Networks and Machine Learning
  24. Back Matter