|
|
|
|
|
|
|
| |
|
Автор: Леен Аммерааль Название: STL для программистов на C++ Издательство: М.: ДМК Год: 1999 ISBN: 5-89818-027-3 Язык: Русский Формат: pdf Размер: 13,4 mb Страниц: 240 c.: ил.
Книга Леена Аммерааля посвящена стандартной библиотеке шаблонов (STL) - мощному инструменту повышения эффективности труда программистов, пишущих на C++. |
Разместил: daromir 24-01-2017, 16:22 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Beginning Android Progrmaming with Android Studio Автор: Roger Deutsch Год: 2017 Страниц: 320 Формат: PDF, EPUB Размер: 26 Mb Язык: English
Note: Beginning Android Programming was previously published as Launch Your Android App. Beginning Android Programming will teach you to develop Android Apps using Android Studio while walking through the creation of three complete apps. You will learn how to use various layouts and controls (ScrollView, ListViews and more). You'll learn how to create and write to files and the required permissions to allow apps to write to files. |
Разместил: bhaer 24-01-2017, 12:57 | Комментарии: 2 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Problem Solving in Data Structures & Algorithms Using Java: The Ultimate Guide to Programming Автор: Hemant Jain Издательство: CreateSpace Independent Publishing Platform Год: 2017 Страниц: 434 Формат: PDF, EPUB, MOBI Размер: 12 Mb Язык: English
This book is about the usage of Data Structures and Algorithms in computer programming. Designing an efficient algorithm to solve a computer science problem is a skill of Computer programmer. This is the skill which tech companies like Google, Amazon, Microsoft, Adobe and many others are looking for in an interview. This book assumes that you are a JAVA language developer. You are not an expert in JAVA language, but you are well familiar with concepts of references, functions, lists and recursion. In the start of this book, we will be revising the JAVA language fundamentals. We will be looking into some of the problems in arrays and recursion too. Then in the coming chapter, we will be looking into complexity analysis. Then will look into the various data structures and their algorithms. |
Разместил: bhaer 24-01-2017, 12:52 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Problem Solving in Data Structures & Algorithms Using C++: Programming Interview Guide Автор: Hemant Jain Издательство: CreateSpace Independent Publishing Platform Год: 2017 Страниц: 456 Формат: PDF, EPUB, MOBI Размер: 14 Mb Язык: English
This book is about the usage of data structures and algorithms in computer programming. Designing an efficient algorithm to solve a computer science problem is a skill of Computer programmer. This is the skill which tech companies like Google, Amazon, Microsoft, Adobe and many others are looking for in an interview. This book assumes that you are a C++ language developer. You are not an expert in C++ language, but you are well familiar with concepts of references, functions, arrays and recursion. In the start of this book, we will be revising the C++ language fundamentals that will be used throughout this book. We will be looking into some of the problems in arrays and recursion too. Then in the coming chapter, we will be looking into complexity analysis. |
Разместил: bhaer 24-01-2017, 12:48 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Algorithms and Models for Network Data and Link Analysis Автор: Francois Fouss, Marco Saerens, Masashi Shimbo Издательство: Cambridge University Press Год: 2016 Страниц: 534 Формат: PDF Размер: 17 Mb Язык: English
Network data are produced automatically by everyday interactions - social networks, power grids, and links between data sets are a few examples. Such data capture social and economic behavior in a form that can be analyzed using powerful computational tools. This book is a guide to both basic and advanced techniques and algorithms for extracting useful information from network data. |
Разместил: bhaer 24-01-2017, 12:37 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Breakthrough Improvement with QI Macros and Excel: Finding the Invisible Low-Hanging Fruit Автор: Arthur J. Издательство: McGraw-Hill Education Год: 2014 Формат: EPUB Страниц: 208 Размер: 15 mb Язык: английский
Maximize speed, quality, productivity, and profits with QI Macros for Excel Breakthrough Improvement with QI Macros and Excel: Finding the Invisible Low-Hanging Fruit reveals proven techniques for identifying and analyzing data that will lead to immediate results. This practical guide focuses on using Excel, one of the most widely used software packages, to drive improvement--no need to rely on expensive training in a new methodology. Free video training and a 90-day trial version of QI Macros for Excel can be found at www.qimacros.com/breakthrough. Links to YouTube videos for each chapter of the book can be found at www.breakthrough-improvement-excel.com The combination of the book, software, and video training will provide you with the tools you need to eliminate the three silent killers of productivity: delay, defects, and deviation. You'll make and sustain breakthrough improvements that will catapult your business ahead of the competition. |
Разместил: na5ballov 24-01-2017, 10:12 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Digital Signal Processing with Python Programming Автор: Maurice Charbit Издательство: Wiley-ISTE ISBN: 1786301261 Год: 2017 Язык: Английский Страниц: 290 Формат: pdf Размер: 26.37 MB
Оценка параметров и проверка гипотез - это основные инструменты статистического вывода. Эти методы имеют место во многих приложениях обработки данных, также методы Монте-Карло стали важным инструментом для оценки производительности. Автор подразумевает хорошие знания у читателя языка Python и понимание основ DSP. |
Разместил: Ingvar16 23-01-2017, 20:07 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Dynamic Programming for Coding Interviews: A Bottom-Up approach to problem solving Автор: Kamal Rawat, Meenakshi Издательство: Notion Press Год: 2017 Страниц: 142 Формат: PDF, EPUB, MOBI Размер: 77 Mb Язык: English
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… |
Разместил: bhaer 23-01-2017, 10:37 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: Android 4. Программирование приложений для планшетных компьютеров и смартфонов Автор: Майер Р. Издательство: Эксмо Год: 2013 Страниц: 816 ISBN: 978-5-699-63735-5 Формат: DJVU Размер: 14.2 Мб Язык: русский Серия: Мировой компьютерный бестселлер
Данная книга является наилучшим руководством для программистов, желающих научиться создавать приложения для мобильной платформы Android. Она представляет собой практический курс по написанию программного обеспечения на базе Android 4 SDK. Все теоретические сведения закрепляются максимально приближенными к реальным задачам примерами. |
Разместил: MIHAIL62 23-01-2017, 01:01 | Комментарии: 0 | Подробнее
| | | |
|
| |
|
|
|
|
|
|
| |
|
Название: XML для проектировщиков Автор: Джеймс Бин Издательство: КУДИЦ-Образ Год: 2004 Формат: PDF Страниц: 256 Размер: 6.73 MB Язык: Русский
Данная книга посвящена вопросам проектирования XML-структур, ориентированных на повторное использование.
Необходимость в XML обусловлена широчайшими возможностями этого метаязыка для организации работы с независимыми от платформы данными и интеграции корпоративных приложений. Невероятно мощные современные технологии, ориентированные на электронный бизнес, такие как ebXML и Web-сервисы, немыслимы без XML. И, несмотря на такую значимость XML, существует крайне мало изданий, затрагивающих вопросы проектирования эффективных, удобных и пригодных для повторного использования XML-языков. Этот пробел восполняет данная книга.
Также в этой книге детально рассмотрены XML-Схемы, приведены справочные таблицы соответствия типов данных различных СУБД типам данных XML-Схем и, в завершении, обозреваются основные технологии мира Web-сервисов - SOAP, WSDL и UDDI. Книга ориентирована на проектировщиков моделей данных и разработчиков приложений, использующих XML. |
Разместил: asusaser 23-01-2017, 00:35 | Комментарии: 0 | Подробнее
| | | |
|
| |
br>
|