/Everyday-Data-Structures

Everyday Data Structures, published by Packt

Primary LanguageObjective-CMIT LicenseMIT

Everyday Data Structures

This is the code repository for Everyday Data Structures, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

If you want to learn different data structures and their real-world applications quickly through practical examples, then Everyday Data Structures is for you. This book can introduce you to new data structures and their potential applications through examples in languages common to mobile software development on the most popular platforms. The examples are presented with real-world concepts using language that everyone will understand.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

func canAddUser(user: EDSUser) -> Bool
{
    if (_users.contains(user)) 
    {
        return false;
    } else {
        return true;
    }
}

In order for you to take full advantage of this book, you will need a modern computer. The code examples in this book are broad enough that you can use a Mac, PC, or even a Linux machine. Ultimately, you will also need a functioning development environment, such as Visual Studio, XCode, Eclipse, or NetBeans, that can run on your chosen development machine.

Related Products

Suggestions and Feedback

Click here if you have any feedback or suggestions.