Skip to main content

Shopping Cart

You're getting the VIP treatment!

Item(s) unavailable for purchase
Please review your cart. You can remove the unavailable item(s) now or we'll automatically remove it at Checkout.
itemsitem
itemsitem

Recommended For You

Loading...


robert lafore

Showing 1 - 12 of 12 results for “robert lafore
Skip side bar filters
  • Object-Oriented Programming in C++

    by Robert Lafore ...
    Object-Oriented Programming in C++ begins with the basic principles of the C++ programming language and systematically introduces increasingly advanced topics while illustrating the OOP methodology. While the structure of this book is similar to that of the previous edition, each chapter reflects the latest ANSI C++ standard and the examples have been thoroughly revised to reflect current ... Read more

    $41.79 USD

  • Data Structures & Algorithms in Python

    LEARN HOW TO USE DATA STRUCTURES IN WRITING HIGH PERFORMANCE PYTHON PROGRAMS AND ALGORITHMSThis practical introduction to data structures and algorithms can help every programmer who wants to write more efficient software. Building on Robert Lafore's legendary Java-based guide, this book helps you understand exactly how data structures and algorithms operate. You'll learn how to efficiently apply ... Read more

    $59.39 USD

  • Data Structures and Algorithms in Java

    by Robert Lafore ...
    Data Structures and Algorithms in Java, Second Edition is designed to be easy to read and understand although the topic itself is complicated. Algorithms are the procedures that software programs use to manipulate data structures. Besides clear and simple example programs, the author includes a workshop as a small demonstration program executable on a Web browser. The programs demonstrate in ... Read more

    $46.09 USD

People who read these also enjoyed

  • A Game of Thrones

    A Song of Ice and Fire: Book One

    Series Book 1 - A Song of Ice and Fire
    NOW THE ACCLAIMED HBO SERIES GAME OF THRONES—THE MASTERPIECE THAT BECAME A CULTURAL PHENOMENONHere is the first book in the landmark series that has redefined imaginative fiction and become a modern masterpiece.A GAME OF THRONESIn a land where summers can last decades and winters a lifetime, trouble is brewing. The cold is returning, and in the frozen wastes to the North of Winterfell, sinister ... Read more

    $8.99 USD

  • Programming Embedded Systems

    With C and GNU Development Tools

    If you have programming experience and a familiarity with C--the dominant language in embedded systems--Programming Embedded Systems, Second Edition is exactly what you need to get started with embedded software. This software is ubiquitous, hidden away inside our watches, DVD players, mobile phones, anti-lock brakes, and even a few toasters. The military uses embedded software to guide missiles, ... Read more

    $28.99 USD

  • Getting Started with the Internet of Things

    Connecting Sensors and Microcontrollers to the Cloud

    by Cuno Pfister ...
    What is the Internet of Things? It's billions of embedded computers, sensors, and actuators all connected online. If you have basic programming skills, you can use these powerful little devices to create a variety of useful systems—such as a device that waters plants when the soil becomes dry. This hands-on guide shows you how to start building your own fun and fascinating projects.Learn to ... Read more

    $14.99 USD

  • Programming in C

    100% Pure Adrenaline

    by J. B. Dixit ...
    Series Book 1 - Surf Rangers
    This book is written for M.C.A., M.Tech., M.Sc., Engineering, B.C.A., B.I.T., B.Sc., C-DAC, DOEACC O-Level and A-Level, P.G.D.C.A. and other computer programmes students. In addition it can be of great help to those who feel that programming is not their cup of tea. ... Read more

    $6.99 USD

  • Exploring Raspberry Pi

    Interfacing to the Real World with Embedded Linux

    by Derek Molloy ...
    Expand Raspberry Pi capabilities with fundamental engineering principlesExploring Raspberry Pi is the innovators guide to bringing Raspberry Pi to life. This book favors engineering principles over a 'recipe' approach to give you the skills you need to design and build your own projects. You'll understand the fundamental principles in a way that transfers to any type of electronics, electronic ... Read more

    $23.00 USD

  • Managing Security with Snort & IDS Tools

    Intrusion Detection with Open Source Tools

    Intrusion detection is not for the faint at heart. But, if you are a network administrator chances are you're under increasing pressure to ensure that mission-critical systems are safe--in fact impenetrable--from malicious code, buffer overflows, stealth port scans, SMB probes, OS fingerprinting attempts, CGI attacks, and other network intruders.Designing a reliable way to detect intruders before ... Read more

    $23.99 USD

  • Programming Problems: A Primer for The Technical Interview

    by Bradley Green ...
    A complete primer for the technical programming interview. This book reviews the fundamentals of computer programming through programming problems posed to candidates at Amazon, Apple, Facebook, Google, Microsoft, and others. Complete solutions to every programming problem is provided in clear explanations and easy to read C++11 code.If you are learning to code then this book provides a great ... Read more

    Free

  • Real World Instrumentation with Python

    Automated Data Acquisition and Control Systems

    Learn how to develop your own applications to monitor or control instrumentation hardware. Whether you need to acquire data from a device or automate its functions, this practical book shows you how to use Python's rapid development capabilities to build interfaces that include everything from software to wiring. You get step-by-step instructions, clear examples, and hands-on tips for interfacing ... Read more

    $31.69 USD

  • Dynamic Programming for Coding Interviews

    A Bottom-Up approach to problem solving

    I wanted to compute 80th term of the Fibonacci series. I wrote the rampant recursive function,int fib(int n){ return (1==n 2==n) ? 1 : fib(n-1) + fib(n-2);}and waited for the result. I wait… and wait… and wait…With an 8GB RAM and an Intel i5 CPU, why is it taking so long? I terminated the process and tried computing the 40th term. It took about a second. I put a check and was shocked to find ... Read more

    $3.99 USD