Data Structures and Algorithms Using Python and C++

Data Structures and Algorithms Using Python and C++
ISBN-10
1590282337
ISBN-13
9781590282335
Category
Algorithms
Pages
568
Language
English
Published
2009
Publisher
Franklin Beedle & Assoc
Authors
David M. Reed, John M. Zelle

Description

"Builds on knowledge from a first course in computer programming using Python. Makes a transition from programming in Python to a data structures course and programming in C++"--Provided by publisher.

Similar books

  • Data Structures and Algorithms in Python
    By Michael T. Goodrich, Roberto Tamassia, Michael H. Goldwasser

    This is a "sister" book to Goodrich & Tamassia's "Data Structures and Algorithms in Java "and Goodrich, Tamassia and Mount's "Data Structures and Algorithms in C++.

  • Data Structures and Algorithms using Python
    By Subrata Saha

    ... access array elements from the end. When we access an array from the left or the beginning, the array index is started from 0. But if we start accessing elements from the end, array index starts from -1. Python uses negative index numbers ...

  • Problem Solving with Algorithms and Data Structures Using Python
    By Bradley N. Miller, David L. Ranum

    Thes book has three key features : fundamental data structures and algorithms; algorithm analysis in terms of Big-O running time in introducied early and applied throught; pytohn is used to facilitates the success in using and mastering ...

  • Hands-On Data Structures and Algorithms with Python: Write complex and powerful code using the latest features of Python 3.7, 2nd...
    By Dr. Basant Agarwal, Benjamin Baka

    This book helps you to understand the power of linked lists, double linked lists, and circular linked lists. You will learn to create complex data structures, such as graphs, stacks, and queues.

  • Data Structures and Algorithms in C++
    By Michael T. Goodrich, Roberto Tamassia, David M. Mount

    ... int>("Rob", 28)); // insert (“Rob”,28) myMap["Joe"] = 38; // insert(“Joe”,38) myMap["Joe"] 50; // change to (“Joe”,50) myMap["Sue"] = 75; // insert(“Sue”,75) p = myMap.find("Joe"); // *p = (“Joe”,50) myMap.erase(p); ...

  • Data Structures and Algorithms with Python
    By Steve Hubbard, Kent D. Lee

    The book is also suitable as a refresher guide for computer programmers starting new jobs working with Python.

  • Open Data Structures: An Introduction
    By Pat Morin

    Introduction -- Array-based lists -- Linked lists -- Skiplists -- Hash tables -- Binary trees -- Random binary search trees -- Scapegoat trees -- Red-black trees -- Heaps -- Sorting algorithms -- Graphs -- Data structures for integers -- ...

  • Data Structure and Algorithms Using C++: A Practical Implementation
    By Sachi Nandan Mohanty, Pabitra Kumar Tripathy

    This book is intended to flow from the basic concepts of C++ to technicalities of the programming language, its approach and debugging.

  • C++ Plus Data Structures
    By Nell B. Dale

    ... Design and Production : Anne Spencer V.P. , Manufacturing and Inventory Control : Therese Bräuer Editor - in - Chief , College : J. Michael Stranz ... in - Publication Data Dale , Nell B. C ++ plus data structures / Nell Dale .

  • Data Structures and Algorithms Using Python
    By Rance D. Necaise

    "More and more programmers are turning to Python and this book will give them the understanding they need. Necaise introduces the basic array structure and explores the fundamentals of implementing and using multi-dimensional arrays.