Vtome.ru - электронная библиотека

  • Добавил: Почемучка
  • Дата: 14-10-2018, 21:10
  • Комментариев: 0

Название: Структуры данных и стандартная библиотека шаблонов
Автор: Коллинз У.Дж.
Издательство: Бином-Пресс
Год: 2004
Формат: PDF
Страниц: 623
Размер: 13.3 MB
Язык: Русский

В книге рассматриваются основы организации структур данных и их реализации с использованием C++ в качестве языка инструкций. Большинство рассматриваемых структур данных, таких как массивы, векторы, очереди, списки и стеки, имеются в составе стандартной библиотеки шаблонов (STL). Достаточно подробно исследуется каноническая реализация этих структур данных, которая является как эффективной, так и краткой. Большое внимание уделяется также алгоритмам для работы со структурами данных.
  • Добавил: Почемучка
  • Дата: 14-10-2018, 20:58
  • Комментариев: 0

Название: Структуры и методы обработки данных. Практикум в среде Delphi
Автор: В. С. Зубов, И. В. Шевченко
Издательство: Информационно-издательский дом Филинъ
Год: 2004
Формат: PDF
Страниц: 308
Размер: 10.2 MB
Язык: Русский

В книге рассматриваются широко используемые структуры данных и фундаментальные алгоритмы сортировки данных, информационного поиска, упорядочивания динамических данных, решения графовых задач и генерации комбинаторных объектов. Алгоритмы прошли тщательный отбор и апробацию.
  • Добавил: bhaer
  • Дата: 14-10-2018, 11:44
  • Комментариев: 0

Название: Data Analytics Guide: For Beginners Introduction
Автор: William Sullivan
Издательство: CreateSpace
Год: 2018
Страниц: 154
Формат: PDF
Размер: 10 Mb
Язык: English

The ultimate guide to data analytics is here! Learn everything you need to know
TIME is the greatest commodity and asset we have
Information like this can cost a fortune
Business consultants will charge anywhere between $100s-$1000s of dollars
This book is your golden answer, it teaches you everything you will need to leverage, capitalize, accelerate revenue growth and close more sales much more effectively
  • Добавил: bhaer
  • Дата: 14-10-2018, 11:26
  • Комментариев: 0

Название: Probability & Statistics for Engineers & Scientists, Global Edition, 9th Edition
Автор: Raymond Myers
Издательство: Pearson
Год: 2016
Страниц: 816
Формат: True PDF
Размер: 10 Mb
Язык: English

This classic text provides a rigorous introduction to basic probability theory and statistical inference, with a unique balance between theory and methodology. Interesting, relevant applications use real data from actual studies, showing how the concepts and methods can be used to solve problems in the field. This revision focuses on improved clarity and deeper understanding.
  • Добавил: harun54
  • Дата: 13-10-2018, 22:29
  • Комментариев: 0
Название: You Don't Know JS: ES6 & Beyond
Автор: Kyle Simpson
Издательство: O'Reilly Media
Год: 2015
Формат: PDF, EPUB, MOBI
Размер: 16 Мб
Язык: английский / English

No matter how much experience you have with javascript, odds are you don’t fully understand the language. As part of the "You Don’t Know JS" series, this compact guide focuses on new features available in ECMAScript 6 (ES6), the latest version of the standard upon which javascript is built.
  • Добавил: harun54
  • Дата: 13-10-2018, 22:10
  • Комментариев: 0
Название: Think DSP: Digital Signal Processing in Python
Автор: Allen B. Downey
Издательство: O'Reilly Media
Год: 2016
Формат: PDF, EPUB
Размер: 16 Мб
Язык: английский / English

Think DSP: Digital Signal Processing in Python is an introduction to signal processing and system analysis using a computational approach. The premise of this book (like the others in the Think X series) is that if you know how to program, you can use that skill to learn other things. By the end of the first chapter, you'll be able to decompose a sound into its harmonics, modify the harmonics, and generate new sounds. Subsequent chapters follow a logical progression that develops the important ideas incrementally, with a focus on applications.
  • Добавил: harun54
  • Дата: 13-10-2018, 19:44
  • Комментариев: 0
Название: C in a Nutshell: The Definitive Reference
Автор: Peter Prinz and Tony Crawford
Издательство: O'Reilly Media
Год: 2016
Формат: PDF
Размер: 10 Мб
Язык: английский / English

The new edition of this classic O’Reilly reference provides clear, detailed explanations of every feature in the C language and runtime library, including multithreading, type-generic macros, and library functions that are new in the 2011 C standard (C11). If you want to understand the effects of an unfamiliar function, and how the standard library requires it to behave, you’ll find it here, along with a typical example.
  • Добавил: harun54
  • Дата: 13-10-2018, 19:22
  • Комментариев: 0
Название: Coding Games in Scratch
Автор: Jon Woodcock
Издательство: DK Children
Год: 2015
Формат: PDF
Размер: 28 Мб
Язык: английский / English

Did you know that Bill Gates, cofounder of Microsoft, wrote his first computer program—a tic-tac-toe game—at age 13? Coding Games in Scratch shows how kids can start coding their own games, too, using Scratch, a popular free programming language. With Coding Games in Scratch, kids can build single and multiplayer platform games, create puzzles and memory games, race through mazes, add animation, and more. All they need is a desktop or laptop with Adobe 10.2 or later, and an internet connection to download Scratch 2.0. Coding can be done without download on https://scratch.mit.edu.
  • Добавил: harun54
  • Дата: 13-10-2018, 19:19
  • Комментариев: 0
Название: Writing An Interpreter In Go
Автор: Thorsten Ball
Издательство: Thorsten Ball
Год: 2016
Формат: PDF, EPUB
Размер: 17 Мб
Язык: английский / English

We'll start with 0 lines of code and end up with a fully working interpreter for the Monkey programming language. Monkey has been specifically designed for this book: it's a language that looks a lot like C, has first class functions, closures, strings, hashes and arrays and its only implementation is the one we build in the book. In contrast to text books on interpreters & compilers, the focus of this book is working code. Code is not just found in the appendix -- no, nearly every page contains a snippet! And not only that, but also tests. The code presented in the book is fully tested and the test suite is included.
  • Добавил: bhaer
  • Дата: 13-10-2018, 14:11
  • Комментариев: 0

Название: Challenges of the Internet of Things: Technique, Use, Ethics
Автор: Imad Saleh
Издательство: Wiley-ISTE
Год: 2018
Страниц: 274
Формат: True PDF
Размер: 14 Mb
Язык: English

This book will examine the issues of IoT according to three complementary axes: technique, use, ethics. The techniques used to produce artefacts (physical objects, infrastructures), programs (algorithms, software) and data (Big data, linked data, metadata, ontologies) are the subject of many innovations as the field of IoT is rich and stimulating. Along with this technological boom, IoT uses colonize new fields of application in the fields of transport, administration, housing, maintenance, health, sports, well-being. ... Privileged interface with digital ecosystems now at the heart of social exchanges, the IoT develops a power to act whose consequences both good and bad make it difficult to assess a fair business.