Nicht aus der Schweiz? Besuchen Sie lehmanns.de
Data Structures and Algorithms in Swift -  Elshad Karimov

Data Structures and Algorithms in Swift (eBook)

Implement Stacks, Queues, Dictionaries, and Lists in Your Apps
eBook Download: PDF
2020 | 1. Auflage
XIII, 215 Seiten
Apress (Verlag)
978-1-4842-5769-2 (ISBN)
Systemvoraussetzungen
62,99 inkl. MwSt
(CHF 61,50)
Der eBook-Verkauf erfolgt durch die Lehmanns Media GmbH (Berlin) zum Preis in Euro inkl. MwSt.
  • Download sofort lieferbar
  • Zahlungsarten anzeigen
Control the performance and stability of the apps you develop in Swift by working with and understanding advanced concepts in data structures and algorithms. 

All professional developers have to know which data structure and algorithms to use in their development process. Your choice directly affects the performance of your application. With this book, you'll increase the performance of your software, become a better developer, and even pass tricky interview questions better when looking at professional development opportunities. 

Guided by compact and practical chapters, you'll learn the nature and proper use of data structures such as arrays, dictionaries, sets, stacks, queues, lists, hash tables, trie, heaps, binary trees, red black trees, and R-trees. Use the main differences among them to determine which will make your applications efficient and faster. Then tackle algorithms. Work with Big O notation; sorting algorithms such as Insertion, Merge, and Quick; Naive and Rabin Karp algorithms; and Graph Algorithms. 

Data Structures and Algorithms in Swift encourages you to further and understand how to best choose the perfect algorithm for your application's needs. 

What You'll Learn

  • Retrieve, add, and remove elements in arrays
  • Implement stacks, queues, and lists in your apps
  • Sort algorithms and choose the best ones for your apps

Who This Book Is For

Developers who have intermediate knowledge in Swift and want to improve their code performance and pass more complex interviews


Elshad Karimov is an experienced programmer with a solid background in iOS development as well as Oracle, SQL, C#, Java, and HTML/CSS. He's familiar with the performance limits and characteristics of Swift and the nature and function of embedded databases and system datastores.
Control the performance and stability of the apps you develop in Swift by working with and understanding advanced concepts in data structures and algorithms. All professional developers have to know which data structure and algorithms to use in their development process. Your choice directly affects the performance of your application. With this book, you'll increase the performance of your software, become a better developer, and even pass tricky interview questions better when looking at professional development opportunities. Guided by compact and practical chapters, you'll learn the nature and proper use of data structures such as arrays, dictionaries, sets, stacks, queues, lists, hash tables, trie, heaps, binary trees, red black trees, and R-trees. Use the main differences among them to determine which will make your applications efficient and faster. Then tackle algorithms. Work with Big O notation; sorting algorithms such as Insertion, Merge, and Quick; Naive and Rabin Karp algorithms; and Graph Algorithms. Data Structures and Algorithms in Swift encourages you to further and understand how to best choose the perfect algorithm for your application's needs. What You'll LearnRetrieve, add, and remove elements in arraysImplement stacks, queues, and lists in your appsSort algorithms and choose the best ones for your appsWho This Book Is ForDevelopers who have intermediate knowledge in Swift and want to improve their code performance and pass more complex interviews

Table of Contents 4
About the Author 11
About the Technical Reviewer 12
Chapter 1: Arrays 13
Introduction 13
Main Features of Arrays 14
Retrieving Elements from an Array 16
Adding Elements to an Array 17
Removing Elements from an Array 18
Built-in Functions and Properties 18
isEmpty 18
First and Last 19
Reversed and Reverse 19
Count 19
Important 20
Conclusion 20
Chapter 2: Dictionaries 21
Introduction 21
Accessing Values in a Dictionary 23
Adding/Modifying to a Dictionary 25
Removing a Value from a Dictionary 26
Built-in Functions and Properties 26
isEmpty 26
First 26
Count 27
Keys 27
Conclusion 27
Chapter 3: Sets 28
Accessing, Adding, and Removing an Element of a Set 28
Accessing an Element 28
Adding an Element 30
Removing Elements 30
Set Operations 31
Comparison Operations 31
Union 31
Intersection 32
Subtracting 33
Symmetric Difference 34
Membership and Equality Operations 35
Set Equality 35
Set Membership 35
Conclusion 37
Chapter 4: Stacks 38
Using Swift with Stacks 39
Stack Structures 42
Stack Extensions 43
Conclusion 43
Chapter 5: Queue 44
Implementation 46
Conclusion 51
Chapter 6: Linked Lists 52
Implementation 53
Node 54
Singly Linked List 54
Adding New Values to a Linked List 55
Append 56
Insert 57
Removing New Values from a Linked List 58
removeLast 59
remove(at:) 60
Doubly Linked List 61
Append 63
Remove Node Method 64
Remove(at:) 64
Summary 65
Chapter 7: Hash Table 66
Creating Hash Table 67
Retrieving Data from a Hash Table 68
Updating a Value in a Hash Table 69
Removing a Value from a Hash Table 70
Summary 71
Chapter 8: Trees 72
Creation 73
Insertion 74
Searching Data 75
Conclusion 77
Chapter 9: Trie Data Structure 78
Why a Trie? 78
How It Works 79
Implementation 80
Insert 81
Query 82
Remove 83
Conclusion 86
Chapter 10: Binary Tree 87
Binary Tree Primer 87
Properties of Binary Tree 88
Types of Binary Trees 88
Implementation 91
Tree Traversal (Also Known As Tree Search) 91
In-Order Traversal 92
Pre-Order Traversal 93
Post-Order Traversal 95
Conclusion 96
Chapter 11: Binary Search Tree 97
Implementation 98
Insert 99
Search 102
Example 104
Delete 104
Deleting a Leaf 104
Deleting a Node with One Child 105
Deleting a Node with Two Children 106
Conclusion 110
Chapter 12: Red–Black Tree 111
Implementation 112
Rotation 115
Insertion 119
Deletion 125
Conclusion 130
Chapter 13: Big O 131
Time Complexity 131
Space Complexity 134
Drop the Constants and Nondominant Terms 135
How to Calculate Complexities? 136
Add vs. Multiply 138
Amortized Time 139
Log N Runtimes 140
Recursive Runtimes 141
Conclusion 142
Chapter 14: Sorting Algorithms 143
Bubble Sort 143
Implementation 146
Selection Sort 147
Implementation 149
Insertion Sort 150
Implementation 152
Merge Sort 153
Implementation 156
Quick Sort 158
Implementation 161
Pivot Selection 162
Conclusion 163
Chapter 15: Search Algorithms 164
Linear Search 164
Implementation 166
Binary Search 167
Implementation 169
Conclusion 170
Chapter 16: Graph Algorithms 171
Directed Graphs 172
Undirected Graphs 172
Weighted Graphs 173
Breadth-First Search (BFS) 174
Implementation 179
Depth-First Search (DFS) 182
Implementation 187
Dijkstra’s Algorithm 190
Implementation 198
Algorithm 199
Conclusion 202
Chapter 17: Choosing the Best Algorithm 203
Sorting Algorithms 204
Bubble Sort 204
Selection Sort 204
Insertion Sort 205
Merge Sort 205
Quick Sort 205
Search Algorithms 206
Linear Search vs. Binary Search 206
Graph Search Algorithms (GSA) 208
Dijkstra’s Algorithm 209
Index 210

Erscheint lt. Verlag 25.3.2020
Zusatzinfo XIII, 208 p. 95 illus.
Sprache englisch
Themenwelt Informatik Betriebssysteme / Server Macintosh / Mac OS X
Informatik Programmiersprachen / -werkzeuge Mac / Cocoa Programmierung
Schlagworte algorithm • Array • data structure • Dictionaries • dictionary • queue in swift • SET • stack in swift • SWIFT
ISBN-10 1-4842-5769-3 / 1484257693
ISBN-13 978-1-4842-5769-2 / 9781484257692
Haben Sie eine Frage zum Produkt?
PDFPDF (Wasserzeichen)
Größe: 4,0 MB

DRM: Digitales Wasserzeichen
Dieses eBook enthält ein digitales Wasser­zeichen und ist damit für Sie persona­lisiert. Bei einer missbräuch­lichen Weiter­gabe des eBooks an Dritte ist eine Rück­ver­folgung an die Quelle möglich.

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen dafür einen PDF-Viewer - z.B. den Adobe Reader oder Adobe Digital Editions.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen dafür einen PDF-Viewer - z.B. die kostenlose Adobe Digital Editions-App.

Zusätzliches Feature: Online Lesen
Dieses eBook können Sie zusätzlich zum Download auch online im Webbrowser lesen.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich
A practical guide to implementing, managing, and optimizing macOS Big …

von Nava Herta Nava

eBook Download (2021)
Packt Publishing (Verlag)
CHF 33,95