Контакты/Проезд  Доставка и Оплата Помощь/Возврат
История
  +7 707 857-29-98
  +7(7172) 65-23-70
  10:00-18:00 пн-пт
  shop@logobook.kz
   
    Поиск книг                        
Найти
  Зарубежные издательства Российские издательства  
Авторы | Каталог книг | Издательства | Новинки | Учебная литература | Акции | Бестселлеры | |
 

An Introduction to the American Legal System, Scheb John M., Sharma Hemant


Варианты приобретения
Цена: 338640.00T
Кол-во:
 о цене
Наличие: Невозможна поставка.

в Мои желания

Автор: Scheb John M., Sharma Hemant
Название:  An Introduction to the American Legal System
ISBN: 9781543813814
Издательство: Aspen Publishers
Классификация: ISBN-10: 154381381X
Обложка/Формат: Paperback
Страницы: 672
Вес: 1.31 кг.
Дата издания: 02.02.2020
Язык: English
Размер: 254 x 203 x 34
Поставляется из: США
Описание:

The Fifth Edition of An Introduction to the American Legal System provides both historical context and thoroughly up-to-date coverage of all aspects of American law and the legal system. Vivid examples, on-point case summaries, and hot-button issues make this text an obvious choice for paralegal, criminal justice, political science, or legal studies courses.

New to the Fifth Edition:

  • This edition of An Introduction to the American Legal System introduces a broad reorganization of the text into four parts that are easily grasped by students:
    • Foundations of the Legal System examines the origins of American law and the important institutions and actors of our present system.
    • Public Law covers those areas of the law that govern the relationships between society, government, and the individual.
    • Private Law explains those areas of the law that deal primarily with the rights and duties of private parties.
    • The Legal Process provides an overview of legal procedure.
  • New chapters on civil rights and civil liberties speak to students interests and the importance of these issues in todays society.
  • A new chapter on appellate procedure exhibits the role of judicial review in civil, criminal and administrative contexts.
  • An expanded chapter on administrative law demonstrates the current importance of administrative agencies in the policymaking process.
  • Recent Supreme Court decisions are covered throughout the book.

Professors and students will benefit from:

  • Comprehensive coverage of law and the legal system
  • Updated coverage of the Supreme Court through the 2018-19 Term
  • Clear prose
  • Extensive citations
  • Comprehensive glossary of legal terms
  • Thought-provoking discussion questions


Автор: Mehta Hemant
Название: The Young Atheist`s Survival Guide: Helping Secular Students Thrive
ISBN: 1939221072 ISBN-13(EAN): 9781939221070
Издательство: Неизвестно
Цена: 11950.00 T
Наличие на складе: Невозможна поставка.

Data Structures & Algorithms In Go

Автор: Jain Hemant
Название: Data Structures & Algorithms In Go
ISBN: 1099552060 ISBN-13(EAN): 9781099552069
Издательство: Неизвестно
Цена: 34490.00 T
Наличие на складе: Невозможна поставка.
Описание: Data Structures & Algorithms books by Hemant Jain is a series of books about the usage of Data Structures and Algorithms in computer programming. The book is easy to follow and is written for interview preparation point of view. In these books, the examples are solved in various languages like Go, C, C++, Java, C#, Python, VB, JavaScript and PHP.


GitHub Repositories for these books.
https: //github.com/Hemant-Jain-Author

Book's Composition
This book introduces you to the world of data structures and algorithms. Data structures defines the way in which data is arranged in memory for fast and efficient access while algorithms are a set of instruction to solve problems by manipulating these data structures.

Designing an efficient algorithm is a very important skill that all software companies, e.g. Microsoft, Google, Facebook etc. pursues. Most of the interviews for these companies are focused on knowledge of data-structures and algorithms. They look for how candidates use concepts of data structures and algorithms to solve complex problems efficiently. Apart from knowing, a programming language you also need to have good command of these key computer fundamentals to not only qualify the interview but also excel in you jobs as a software engineer.

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 classes, functions, arrays, pointers and recursion. At the start of this book, we will be looking into Complexity Analysis followed by the various data structures and their algorithms. We will be looking into a Linked-List, Stack, Queue, Trees, Heap, Hash-Table and Graphs. We will also be looking into Sorting, Searching techniques.

In last few chapters, we will be looking into various algorithmic techniques. Such as, Brute-Force algorithms, Greedy algorithms, Divide and Conquer algorithms, Dynamic Programming, Reduction and Backtracking. .


Table of Contents
Chapter 0: How to use this book.
Chapter 1: Algorithms Analysis
Chapter 2: Approach to solve algorithm design problems
Chapter 3: Abstract Data Type & C# Collections
Chapter 4: Searching
Chapter 5: Sorting
Chapter 6: Linked List
Chapter 7: Stack
Chapter 8: Queue
Chapter 9: Tree
Chapter 10: Priority Queue
Chapter 11: Hash-Table
Chapter 12: Graphs
Chapter 13: String Algorithms
Chapter 14: Algorithm Design Techniques
Chapter 15: Brute Force Algorithm
Chapter 16: Greedy Algorithm
Chapter 17: Divide & Conquer
Chapter 18: Dynamic Programming
Chapter 19: Backtracking
Chapter 20: Complexity Theory

Problem Solving in Data Structures & Algorithms Using Java

Автор: Jain Hemant
Название: Problem Solving in Data Structures & Algorithms Using Java
ISBN: 1723982105 ISBN-13(EAN): 9781723982101
Издательство: Неизвестно
Цена: 34490.00 T
Наличие на складе: Невозможна поставка.
Описание: "Problem Solving in Data Structures & Algorithms" is a series of books about the usage of Data Structures and Algorithms in computer programming. The book is easy to follow and is written for interview preparation point of view. In these books, the examples are solved in various languages like Go, C, C++, Java, C#, Python, VB, JavaScript and PHP.


GitHub Repositories for these books.
https: //github.com/Hemant-Jain-Author

Book's Composition
This book introduces you to the world of data structures and algorithms. Data structures defines the way in which data is arranged in memory for fast and efficient access while algorithms are a set of instruction to solve problems by manipulating these data structures.

Designing an efficient algorithm is a very important skill that all software companies, e.g. Microsoft, Google, Facebook etc. pursues. Most of the interviews for these companies are focused on knowledge of data-structures and algorithms. They look for how candidates use concepts of data structures and algorithms to solve complex problems efficiently. Apart from knowing, a programming language you also need to have good command of these key computer fundamentals to not only qualify the interview but also excel in you jobs as a software engineer.

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 classes, functions, arrays, pointers and recursion. At the start of this book, we will be looking into Complexity Analysis followed by the various data structures and their algorithms. We will be looking into a Linked-List, Stack, Queue, Trees, Heap, Hash-Table and Graphs. We will also be looking into Sorting, Searching techniques.

In last few chapters, we will be looking into various algorithmic techniques. Such as, Brute-Force algorithms, Greedy algorithms, Divide and Conquer algorithms, Dynamic Programming, Reduction and Backtracking. .


Table of Contents
Chapter 0: How to use this book.
Chapter 1: Algorithms Analysis
Chapter 2: Approach to solve algorithm design problems
Chapter 3: Abstract Data Type & JAVA Collections
Chapter 4: Searching
Chapter 5: Sorting
Chapter 6: Linked List
Chapter 7: Stack
Chapter 8: Queue
Chapter 9: Tree
Chapter 10: Priority Queue
Chapter 11: Hash-Table
Chapter 12: Graphs
Chapter 13: String Algorithms
Chapter 14: Algorithm Design Techniques
Chapter 15: Brute Force Algorithm
Chapter 16: Greedy Algorithm
Chapter 17: Divide & Conquer
Chapter 18: Dynamic Programming
Chapter 19: Backtracking
Chapter 20: Complexity Theory

Автор: Hemant Patil
Название: Voice Technologies for Reconstruction and Enhancement
ISBN: 1501501275 ISBN-13(EAN): 9781501501272
Издательство: Walter de Gruyter
Цена: 111510.00 T
Наличие на складе: Невозможна поставка.
Описание: The book brings novel contributions in speech technology for medical and heathcare professionals.

Linseed: Properties, Production and Uses

Автор: Hemant Kumar Yadav
Название: Linseed: Properties, Production and Uses
ISBN: 1536160903 ISBN-13(EAN): 9781536160901
Издательство: Nova Science
Рейтинг:
Цена: 149940.00 T
Наличие на складе: Невозможна поставка.
Описание: This book consists of seven chapters on various aspects related to linseed. Linseed (Linum usitatissimum L.) commonly known as alsi is a member of genus Linum within the family Linaceae with 14 genera and over 200 species. Out of those, only Linum usitatissimum L. possess both agronomic and economic properties and are being exploited for both industrial and human consumption purposes. Irrespective of medicinal, nutraceuticals and industrial uses of linseed, the popularity and attention required for its improvement is still not enough. Therefore, the aim of this book is to summarize all the information about linseed, which will provide a wide perspective to the on-going research activities for crop improvement. It is a collection of incisive reviews along with original research. The included chapters are an excellent source of information for linseed production, cultivation, properties, uses and breeding strategies. This book will initiate interest in utilization of linseed as major crop and also ignite the research possibilities, which are left unexplored.


Казахстан, 010000 г. Астана, проспект Туран 43/5, НП2 (офис 2)
ТОО "Логобук" Тел:+7 707 857-29-98 ,+7(7172) 65-23-70 www.logobook.kz
Kaspi QR
   В Контакте     В Контакте Мед  Мобильная версия