• Complain

Peter Van Weert - C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions

Here you can read online Peter Van Weert - C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2019, publisher: Apress, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Peter Van Weert C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions
  • Book:
    C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions
  • Author:
  • Publisher:
    Apress
  • Genre:
  • Year:
    2019
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

This quick reference is a condensed guide to the essential data structures, algorithms, and functions provided by the C++17 Standard Library. It does not explain the C++ language or syntax, but is accessible to anyone with basic C++ knowledge or programming experience. Even the most experienced C++ programmer will learn a thing or two from it and find it a useful memory-aid. It is hard to remember all the possibilities, details, and intricacies of the vast and growing Standard Library. This handy reference guide is therefore indispensable to any C++ programmer. It offers a condensed, well-structured summary of all essential aspects of the C++ Standard Library. No page-long, repetitive examples or obscure, rarely used features. Instead, everything you need to know and watch out for in practice is outlined in a compact, to-the-point style, interspersed with practical tips and well-chosen, clarifying examples. This new edition is updated to include all Standard Library changes in C++17, including the new vocabulary types std::string_view, any, optional, and variant; parallel algorithms; the file system library; specialized mathematical functions; and more. What You Will Learn Gain the essentials that the C++ Standard Library has to offer Use containers to efficiently store and retrieve your data Inspect and manipulate your data with algorithms See how lambda expressions allow for elegant use of algorithms Discover what the standard string class provides and how to use it Write localized applications Work with file and stream-based I/O Prevent memory leaks with smart pointers Write safe and efficient multi-threaded code using the threading libraries Who This Book Is For All C++ programmers, irrespective of their proficiency with the language or the Standard Library. A secondary audience is developers who are new to C++, but not new to programming, and who want to learn more about the C++ Standard Library in a quick, condensed manner.

Peter Van Weert: author's other books


Who wrote C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions? Find out the surname, the name of the author of the book and a list of all author's works by series.

C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Contents
Landmarks
Peter Van Weert and Marc Gregoire C17 Standard Library Quick Reference A - photo 1
Peter Van Weert and Marc Gregoire
C++17 Standard Library Quick Reference A Pocket Guide to Data Structures, Algorithms, and Functions 2nd ed.
Peter Van Weert Kessel-Lo Belgium Marc Gregoire Meldert Belgium Any - photo 2
Peter Van Weert
Kessel-Lo, Belgium
Marc Gregoire
Meldert, Belgium

Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub via the books product page, located at www.apress.com/9781484249222 . For more detailed information, please visit http://www.apress.com/source-code .

ISBN 978-1-4842-4922-2 e-ISBN 978-1-4842-4923-9
https://doi.org/10.1007/978-1-4842-4923-9
Peter Van Weert and Marc Gregoire 2019
This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein.
Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.

Dedicated to my parents and my brother, who are always there for me. Their support and patience helped me in finishing this book.

Marc Gregoire

In loving memory of Jeroen. Your enthusiasm and courage will forever remain an inspiration to us all.

Peter Van Weert

Introduction
The C++ Standard Library

The C++ Standard Library is a collection of essential classes and functions used by millions of C++ programmers on a daily basis. Being part of the ISO Standard of the C++ Programming Language, an implementation is distributed with virtually every C++ compiler. Code written with the C++ Standard Library is therefore portable across compilers and target platforms.

The Library is more than 25 years old. Its initial versions were heavily inspired by a (then proprietary) C++ library called the Standard Template Library (STL) , so much so that many still incorrectly refer to the Standard Library as the STL. The STL library pioneered generic programming with templated data structures called containers and algorithms , glued together with the concept of iterators . Most of this work was adapted by the C++ standardization committee, but nevertheless neither library is a true superset of the other.

Today the C++ Standard Library is much more than the containers and algorithms of the STL, though. For decades, it has featured STL-like string classes, extensive localization facilities, and a stream-based I/O library, as well as the entire C Standard Library. Earlier this decade, the C++11 and C++14 editions of the ISO standard have added, among other things, hash map containers, generic smart pointers, a versatile random number generation framework, a powerful regular expression library, more expressive utilities for function-style programming, type traits for template metaprogramming, and a portable concurrency library featuring threads, mutexes, condition variables, and atomic variables. Most recently, C++17 has introduced, among many smaller additions, parallelized algorithms, a file system library, and several key types for day-to-day use (such as optional<> , variant<> , any , and string_view ). Many of the C++11, C++14, and C++17 additions are based on Boost, a collection of open source C++ libraries.

And this is just the beginning: the C++ community has rarely been as active and alive as in the past decade. The next version of the Standard, tentatively called C++20, is expected to add even more essential classes and functions.

Why This Book?

Needless to say, it is hard to know and remember all the possibilities, details, and intricacies of the vast and growing C++ Standard Library. This handy reference guide offers a condensed, well-structured summary of all essential aspects of the C++ Standard Library and is therefore indispensable to any C++ programmer.

You could consult the Standard itself, but it is written in a very detailed, technical style and is primarily targeted at Library implementors. Moreover, it is very long: the C++ Standard Library chapters alone are nearly 1,000 pages in length, and those on the C Standard Library easily encompass another 200 pages. Other reference guides exist but are often outdated, limited (most cover little more than the STL containers and algorithms), or not much shorter than the Standard itself.

This book covers all important aspects of the C++17 and C18 Standard Libraries, some in more detail than others, and is always driven by their practical usefulness. You will not find page-long, repetitive examples; obscure, rarely used features; or bloated, lengthy explanations that could be summarized in just a few bullets. Instead, this book strives to be exactly that: a summary. Everything you need to know and watch out for in practice is outlined in a compact, to-the-point style, interspersed with practical tips and short, well-chosen, clarifying examples.

Who Should Read This Book?

The book is targeted at all C++ programmers, regardless of their proficiency with the language or the Standard Library. If you are new to C++, its tutorial aspects will quickly bring you up to speed with the C++ Standard Library. Even the most experienced C++ programmer, however, will learn a thing or two from the book and find it an indispensable reference and memory aid. The book does not explain the C++ language or syntax itself, but is accessible to anyone with basic C++ knowledge or programming experience.

What You Will Learn
  • How to use the powerful random number generation facilities

  • How to work with dates and times

  • What smart pointers are and how to use them to prevent memory leaks

  • How to use containers to efficiently store and retrieve your data

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions»

Look at similar books to C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions»

Discussion, reviews of the book C++17 Standard Library Quick Reference: A Pocket Guide to Data Structures, Algorithms, and Functions and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.