CodeGym/Java Blog/Java Developer/Coding Skills LevelUp. Where to Learn About Data Structur...
CodeGym
Level 41

Coding Skills LevelUp. Where to Learn About Data Structures

Published in the Java Developer group
members
As you may know, programming is a very knowledge-demanding profession. Besides the fact that truly mastering any programming language will take a lot of time and practical experience, very often it isn’t enough. To be successful as a professional software engineer, you will also often be required to know multiple other areas and components of software development work. Even though at CodeGym our goal is to train our students to become real functional Java developers ready for hire, one course, even as great and well-structured as CG is, just can’t supply you with all the knowledge you may need as a pro software developer. Coding Skills LevelUp. Where to Learn About Data Structures - 1That’s why we decided to write a number of pieces about additional programming-related subjects that are not a part of CodeGym’s course, with links and recommendations on where you can learn them. Today we are going to talk about Data structures.

What is Data structures

A data structure is a data organization, management, and storage format that enables efficient access and modification. More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data." This definition is a bit confusing, but its gist is clear. A data structure is a kind of repository where we store data for future use. In programming, there are a huge variety of data structures. When solving specific problems, very often the most important thing is to choose the most suitable data structure for the problem. That is why being well-familiar with data structures is required from many professional software developers.

Where to learn Data structures

1. Books

Data Structures and Algorithms in Java is designed to be easy to read and understand, although the topic itself is complicated. Besides clear and simple example programs, the author includes a workshop as a small demonstration program executable on a web browser. The programs demonstrate in graphical form what data structures look like and how they operate.

A very old (first published in 1983) but still one of the most popular introductory textbooks on data structures and algorithms. The authors' treatment of data structures in Data Structures and Algorithms is unified by an informal notion of "abstract data types," allowing readers to compare different implementations of the same concept. Algorithm design techniques are also stressed and basic algorithm analysis is covered. Most of the programs are written in Pascal.

Another good textbook for beginners in data structures. ‘Data Structures And Algorithms Made Easy: Data Structures and Algorithmic Puzzles’ is a book that offers solutions to complex data structures and algorithms. There are multiple solutions for each problem, and the book is coded in C/C++. This book can serve as a guide to prepare for interviews, exams, and campus work.

Advanced Data Structures presents a comprehensive look at the ideas, analysis and implementation details of data structures as a specialized topic in applied algorithms. This text examines efficient ways to search and update sets of numbers, intervals, or strings by various data structures, such as search trees, structures for sets of intervals or piece-wise constant functions, orthogonal range search structures, heaps, union-find structures, dynamization and persistence of structures, structures for strings, and hash tables.

2. Online courses

“A good algorithm usually comes together with a set of good data structures that allow the algorithm to manipulate the data efficiently. In this course, part of the Algorithms and Data Structures MicroMasters program, we consider the common data structures that are used in various computational problems. You will learn how these data structures are implemented in different programming languages and will practice implementing them in our programming assignments. This will help you to understand what is going on inside a particular built-in implementation of a data structure and what to expect from it. You will also learn typical use cases for these data structures,” authors of the course say.

Price: free, but you need to be subscribed to Pluralsight platform. A course by Robert Horvick, an experienced developer who spent nearly 10 years at Microsoft working on various projects. “In this course we will look at the core data structures and algorithms used in everyday applications. We will discuss the trade-offs involved with choosing each data structure, along with traversal, retrieval, and update algorithms,” says Horvick.

Price: $99.9 on Udemy. One of the best courses on data structures (and algorithms) for Java programmers. This is a hands-on course meant for Java coders who are trying to understand things at a deep level, and work on implementations rather than theory. Topics covered include Arrays, Linked Lists, Trees, Hashtables, Stacks, Queues, Heaps, Sort algorithms, and Search algorithms. The course also spends more time than most other courses of its kind looking at what’s available in the JDK.

3. YouTube channels

Programming with Mosh is a popular mainstream YouTube channel for programming beginners. It has lots and lots of tutorials on Java and other programming languages, they are well-structured and well-presented, including the tutorial on data structures and algorithms. A good way to familiarize yourself with these subjects if you don’t feel like reading books and paying for courses.

One of the best free video courses on data structures by Google engineer William Fiset. This course teaches data structures to beginners using high quality animations to represent the data structures visually. You will learn how to code various data structures together with simple to follow step-by-step instructions. Every data structure presented is accompanied by some working source code in Java.
Comments (1)
  • Popular
  • New
  • Old
You must be signed in to leave a comment
Шарох
Level 10
22 January 2021, 14:57
Thank you brian ! That was great !