Search Constraints
Number of results to display per page
Results for:
« Previous |
1 - 10 of 12
|
Next »
Search Results
-
Others
Symbol Table is an important data structure created and maintained by the compiler in order to keep track of semantics of variables i.e. it stores information about the scope and binding information about names, information about instances of various entities such as variable and function names, classes, objects, etc.
- Course related:
- COMP3438 System Programming
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Compilers (Computer programs)
- Resource Type:
- Others
-
Video
When two people join a dating website they are matched according to shared interests and how they answer a number of personal questions. But how do sites calculate the likelihood of a successful relationship? Christian Rudder one of the founders of popular dating site OKCupid details the algorithm behind 'hitting it off.'
- Subjects:
- Computing, Data Science and Artificial Intelligence and Mathematics and Statistics
- Keywords:
- Dating services Online dating Computer algorithms
- Resource Type:
- Video
-
Courseware
In this card, we are going to help you understand the general concept of Binary Search.
Binary Search is one of the most fundamental and useful algorithms in Computer Science. It describes the process of searching for a specific value in an ordered collection.
Terminology used in Binary Search:
(1) Target - the value that you are searching for
(2) Index - the current location that you are searching
(3) Left, Right - the indicies from which we use to maintain our search Space
(4) Mid - the index that we use to apply a condition to determine if we should search left or right
- Course related:
- COMP3011 Design and Analysis of Algorithms
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Computer algorithms
- Resource Type:
- Courseware
-
e-book
This textbook teaches introductory data structures.
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Java (Computer program language) Textbooks Data structures (Computer science)
- Resource Type:
- e-book
-
Others
A data structure is a particular way of organizing data in a computer so that it can be used effectively.For example, we can store a list of items having the same data-type using the array data structure. This page contains detailed tutorials on different data structures (DS) with topic-wise problems, including (1) Array, (2) Linked List, (3) Stack, (4) Queue, (5) Binary Tree, (6) Binary Search Tree, (7) Heap, (8) Hashing, (9) Graph, (10) Matrix, (11) Advanced Data Structure.
- Course related:
- COMP 2011 Data Structures
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Data structures (Computer science)
- Resource Type:
- Others
-
e-book
Offered as an introduction to the field of data structures and algorithms, Open Data Structures covers the implementation and analysis of data structures for sequences (lists), queues, priority queues, unordered dictionaries, ordered dictionaries, and graphs. Focusing on a mathematically rigorous approach that is fast, practical, and efficient, Morin clearly and briskly presents instruction along with source code. Analyzed and implemented in Java, the data structures presented in the book include stacks, queues, deques, and lists implemented as arrays and linked-lists; space-efficient implementations of lists; skip lists; hash tables and hash codes; binary search trees including treaps, scapegoat trees, and red-black trees; integer searching structures including binary tries, x-fast tries, and y-fast tries; heaps, including implicit binary heaps and randomized meldable heaps; graphs, including adjacency matrix and adjacency list representations; and B-trees. A modern treatment of an essential computer science topic, Open Data Structures is a measured balance between classical topics and state-of-the art structures that will serve the needs of all undergraduate students or self-directed learners.
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Textbooks Data structures (Computer science) Computer algorithms
- Resource Type:
- e-book
-
e-book
Data structures and algorithms are among the most important inventions of the last 50 years, and they are fundamental tools software engineers need to know. But in my opinion, most of the books on these topics are too theoretical, too big, and too bottom-up: Too theoretical: Mathematical analysis of algorithms is based on simplifying assumptions that limit its usefulness in practice. Many presentations of this topic gloss over the simplifications and focus on the math. In this book I present the most practical subset of this material and eliminate the rest. Too big: Most books on these topics are at least 500 pages, and some are more than 1000. By focusing on the topics I think are most useful for software engineers, I kept this book under 250 pages. Too bottom-up: Many data structures books focus on how data structures work (the implementations), with less about how to use them (the interfaces). In this book, I go “top down”, starting with the interfaces. Readers learn to use the structures in the Java Collections Framework before getting into the details of how they work. Finally, many present this material out of context and without motivation: it’s just one damn data structure after another! I try to alleviate the boredom by organizing the topics around an application—web search—that uses data structures extensively, and is an interesting and important topic in its own right. This application also motivates some topics that are not usually covered in an introductory data structures class, including persistent data structures, with Redis, and streaming algorithms. This book also presents basic aspects of software engineering practice, including version control and unit testing. Each chapter ends with an exercise that allows readers to apply what they have learned. Each exercise includes automated tests that check the solution. And for most exercises, I present my solution at the beginning of the next chapter. This book is intended for college students in computer science and related fields, as well as professional software engineers, people training in software engineering, and people preparing for technical interviews. I assume that the reader knows Java at an intermediate level, but I explain some Java features along the way, and provide pointers to supplementary material. People who have read Think Java or Head First Java are prepared for this book.
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Java (Computer program language) Textbooks Data structures (Computer science)
- Resource Type:
- e-book
-
e-book
An introductory coverage of algorithms and data structures with application to graphics and geometry.
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Textbooks Data structures (Computer science) Algorithms
- Resource Type:
- e-book
-
Others
Algorithm Visualizer is an interactive online platform that visualizes algorithms from code. Learning an algorithm gets much easier with visualizing it.
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Information visualization Algorithms
- Resource Type:
- Others
-
Courseware
This is an intermediate algorithms course with an emphasis on teaching techniques for the design and analysis of efficient algorithms, emphasizing methods of application. Topics include divide-and-conquer, randomization, dynamic programming, greedy algorithms, incremental improvement, complexity, and cryptography.
- Subjects:
- Computing, Data Science and Artificial Intelligence
- Keywords:
- Algorithms
- Resource Type:
- Courseware