Everyday Data Structures

Everyday Data Structures

RM 83.00

ISBN:

9781787129832

Categories:

Engineering & IT

File Size

2.24 MB

Format

epub

Language

English

Release Year

2017
Favorite (0)

Synopsis

Key FeaturesThis book is a very practical, friendly, and useful guide that will help you analyze problems and choose the right data structures for your solutionLearn to recognize data patterns for determining which structures apply to a given problemExplore the unique rules or gotchas that will help you become an excellent programmerBook DescriptionIf 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.This book is logically divided into two parts; the first one covers the basic data structures that are built into most languages such as Objective-C, C#, Java, and Swift. It will cover detailed analysis of the common data structures such as arrays, lists, stacks, Queues, and heaps, typical applications, and specific concerns for each language. Each chapter will provide in-depth examples in several popular languages based on real-world applications.The second part will cover more advanced data structures such as generic collections, sorting, searching, and recursion and ways to use those structures in everyday applications.What You Will LearnA rapid overview of data types, applications for each type, best practices and high-level variations between platformsReview the most common data structures and build working examples in the languages used for mobile platform software developmentUnderstand advanced data structure concepts such as generic collections, searching and sorting algorithms, and recursionLearn to use Stacks (LIFO) and queues (FIFO) in your daily applicationAdd/remove objects and nest arrays and dictionaries within another dictionary and understand why such architecture is often preferred or necessaryGet acquainted with the tree structures such as heap, binary, and graphs, apply them to workUnleash the power of different sorting techniques such as bubble sort, quick sort, merge sort, insertion sort, and radix sortPerform searching operations on arrays, heaps, graphs, and binary trees in different languagesAbout the AuthorWilliam Smith has been writing software since 1988, but he began his professional career in the environmental field with degrees in Environmental Science and Business Administration. While working in this field, William continued writing software as a hobbyist before returning to the University of Maryland for a degree in Computer Science.William currently works as an independent software engineer and author. He is the owner of Appsmiths LLC, a development and consulting firm concentrating on mobile application and game development using native tools as well as cross-platform tools, such as Xamarin and Monogame.William lives in rural West Virginia with his beautiful wife and four sons, where they enjoy hunting, fishing, and camping as a family.Table of ContentsData Types: Foundational StructuresArrays: Foundational CollectionsLists: Linear CollectionsStacks: LIFO CollectionsQueues: FIFO CollectionsDictionaries: Keyed CollectionsSets: No DuplicatesStructs: Complex TypesTrees: Non-Linear StructuresHeaps: Ordered TreesGraphs: Values with RelationshipsSorting: Bringing Order Out Of ChaosSearching: Finding What You Need