Von dem Buch Haskell: The Craft of Functional Programming (3rd Edition) (International Computer Science Series) [Paperback] haben wir 2 gleiche oder sehr ähnliche Ausgaben identifiziert!

Falls Sie nur an einem bestimmten Exempar interessiert sind, können Sie aus der folgenden Liste jenes wählen, an dem Sie interessiert sind:

Haskell: The Craft of Functional Programming (3rd Edition) (International Computer Science Series) [Paperback]100%: Dr Simon Thompson: Haskell: The Craft of Functional Programming (3rd Edition) (International Computer Science Series) [Paperback] (ISBN: 9780201882957) 3. Ausgabe, in Englisch, Taschenbuch.
Nur diese Ausgabe anzeigen…
Haskell: The Craft of Functional Programming47%: Simpon Thompson: Haskell: The Craft of Functional Programming (ISBN: 9780201403572) in Englisch, Taschenbuch.
Nur diese Ausgabe anzeigen…

Haskell: The Craft of Functional Programming (3rd Edition) (International Computer Science Series) [Paperback]
8 Angebote vergleichen

Preise20132014201520162017
SchnittFr. 46.38 ( 47.42)¹ Fr. 39.63 ( 40.53)¹ Fr. 63.18 ( 64.61)¹ Fr. 75.74 ( 77.45)¹ Fr. 78.18 ( 79.95)¹
Nachfrage
Bester Preis: Fr. 17.45 ( 17.84)¹ (vom 07.07.2014)
1
9780201882957 - Thompson, Simon: Haskell
Thompson, Simon

Haskell

Lieferung erfolgt aus/von: Deutschland EN PB NW

ISBN: 9780201882957 bzw. 0201882957, in Englisch, Addison-Wesley Longman, Amsterdam, Taschenbuch, neu.

Fr. 68.40 ( 69.95)¹
versandkostenfrei, unverbindlich
Lieferung aus: Deutschland, Versandkosten nach: Deutschland, Versandkostenfrei.
Von Händler/Antiquariat, buecher.de GmbH & Co. KG, [1].
Introducing functional programming in the Haskell language, this book is written for students and programmers with little or no experience. It emphasises the process of crafting programmes, problem solving and avoiding common programming pitfalls. Covering basic functional programming, through abstraction to larger scale programming, students are lead step by step through the basics, before being introduced to more advanced topics. Product Description Introducing functional programming in the Haskell language, this book is written for students and programmers with little or no experience. It emphasises the process of crafting programmes, problem solving and avoiding common programming pitfalls. Covering basic functional programming, through abstraction to larger scale programming, students are lead step by step through the basics, before being introduced to more advanced topics. This edition includes new material on testing and domain-specific languages and a variety of new examples and case studies, including simple games. Existing material has been expanded and re-ordered, so that some concepts such as simple data types and input/output are presented at an earlier stage. Features + Benefits Emphasises software engineering principles. Encourages a disciplined approach to building reusable libraries of software components. Case studies are used throughout the book to introduce new ideas, illustrate important concepts, and demonstrate how existing techniques work together. Case studies include: An interactive calculator programme. A coding and decoding system. A small queue simulation package. Companion website contains supporting material (such as visualisation tools and a substantial number of web links) to aid further study. Appendices contain information on Hugs errors. Backcover The third edition of emHaskell: The Craft of Functional Programming/em is essential reading for beginners to functional programming and newcomers to the Haskell programming language. The emphasis is on the process of crafting programs and the text contains many examples and running case studies, as well as advice on program design, testing, problem solving and how to avoid common pitfalls. Revisions to this new edition include new material on testing and domain-specific languages and a variety of new examples and case studies, including simple games. Existing material has been expanded and re-ordered, so that some concepts - such as simple data types and input/output - are presented at an earlier stage. The running example of Pictures is now implemented using web browser graphics as well as lists of strings. The book uses GHCi, the interactive version of the Glasgow Haskell Compiler, as its implementation of choice. It has also been revised to include material about the Haskell Platform, and the Hackage online database of Haskell libraries. In particular, readers are given detailed guidance about how to find their way around what is available in these systems. An accompanying web site supports the book, containing all the program code, further teaching materials and other useful resources. Simon Thompson is Professor of Logic and Computation in the School of Computing at the University of Kent. His research and teaching interests include functional programming and logical aspects of computer science. Simon has written three other books: emErlang Programming/em (co-authored with Francesco Cesarini), emMiranda: The Craft of Functional Programming/em and emType Theory and Functional Programming/em. Preface 1 Introducing functional programming 1.1 Computers and modelling 1.2 What is a function? 1.3 Pictures and functions 1.4 Types 1.5 The Haskell programming language 1.6 Expressions and evaluation 1.7 Definitions 1.8 Function definitions 1.9 Types and functional programming 1.10 Calculation and evaluation 1.11 The essence of Haskell programming 1.12 Domain-specific languages 1.13 Two models of Pictures 1.14 Tests, properties and proofs 2 Getting started with Haskell and GHCi 2.1 A first Haskell program 2.2 Using Haskell in practice 2.3 Using GHCi 2.4 The standard prelude and the Haskell libraries 2.5 Modules 2.6 A second example: Pictures 2.7 Errors and error messages 3 Basic types and definitions 3.1 The Booleans: Bool 3.2 The integers: Integer and Int 3.3 Overloading 3.4 Guards 3.5 Characters and strings 3.6 Floating-point numbers: Float 3.7 Syntax 4 Designing and writing programs 4.1 emWhere do I start? /emDesigning a program in Haskell 4.2 Solving a problem in steps: local definitions 4.3 Defining types for ourselves: enumerated types 4.4 Recursion 4.5 Primitive recursion in practice 4.6 Extended exercise: pictures 4.7 General forms of recursion 4.8 Program testing 5 Data types, tuples and lists 5.1 Introducing tuples and lists 5.2 Tuple types 5.3 Introducing algebraic types 5.4 Our approach to lists 5.5 Lists in Haskell 5.6 List comprehensions 5.7 A library database 6 Programming with lists 6.1 Generic functions: polymorphism 6.2 Haskell list functions in the Prelude 6.3 Finding your way around the Haskell libraries 6.4 The Picture example: implementation 6.5 Extended exercise: alternative implementations of pictures 6.6 Extended exercise: positioned pictures 6.7 Extended exercise: supermarket billing 6.8 Extended exercise: cards and card games 7 Defining functions over lists 7.1 Pattern matching revisited 7.2 Lists and list patterns 7.3 Primitive recursion over lists 7.4 Finding primitive recursive definitions 7.5 General recursions over lists 7.6 Example: text processing 8 Playing the game: I/O in Haskell 8.1 Rock - Paper - Scissors: strategies 8.2 Why is I/O an issue? 8.3 The basics of input/output 8.4 The do notation 8.5 Loops and recursion 8.6 Rock - Paper - Scissors: playing the game 9 Reasoning about programs 9.1 Understanding definitions 9.2 Testing and proof 9.3 Definedness, termination and finiteness 9.4 A little logic 9.6 Further examples of proofs by induction 9.7 Generalizing the proof goal 10 Generalization: patterns of computation 10.1 Patterns of computation over lists 10.2 Higher-order functions: functions as arguments 10.3 Folding and primitive recursion 10.4 Generalizing: splitting up lists 10.5 Case studies revisited 11 Higher-order functions 11.1 Operators: function composition and application 11.2 Expressions for functions: lambda abstractions 11.3 Partial application 11.4 Under the hood: curried functions 11.5 Defining higher-order functions 11.6 Verification and general functions 12 Developing higher-order programs 12.1 Revisiting the Picture example 12.2 Functions as data: strategy combinators 12.3 Functions as data: recognising regular expressions 12.4 Case studies: functions as data 12.5 Example: creating an index 12.6 Development in practice 12.7 Understanding programs 13 Overloading, type classes and type checking 13.1 Why overloading? 13.2 Introducing classes 13.3 Signatures and instances 13.4 A tour of the built-in Haskell classes 13.5 Type checking and type inference: an overview 13.6 Monomorphic type checking 13.7 Polymorphic type checking 13.8 Type checking and classes 14 Algebraic types 14.1 Algebraic type definitions revisited 14.2 Recursive algebraic types 14.3 Polymorphic algebraic types 14.4 Modelling program errors 14.5 Design with algebraic data types 14.6 Algebraic types and type classes 14.7 Reasoning about algebraic types 15 Case study: Huffman codes 15.1 Modules in Haskell 15.2 Modular design 15.3 Coding and decoding 15.4 Implementation I 15.5 Building Huffman trees 15.6 Design 15.7 Implementation II 16 Abstract data types 16.1 Type representations 16.2 The Haskell abstract data type mechanism 16.3 Queues 16.4 Design 16.5 Simulation 16.6 Implementing the simulation 16.7 Search trees 16.8 Sets 16.9 Relations and graphs 16.10 Commentary 17 Lazy programming 17.1 Lazy evaluation 17.2 Calculation rules and lazy evaluation 17.3 List comprehensions revisited 17.4 Data-directed programming 17.5 Case study: parsing expressions 17.6 Infinite lists 17.7 Why infinite lists? 17.8 Case study: simulation 17.9 Proof revisited 18 Programming with monads 18.1 I/O programming 18.2 Further I/O 18.3 The calculator 18.4 The do notation revisited 18.5 Monads: languages for functional programming 18.6 Example: monadic computation over trees 19 Domain-Specific Languages 19.1 Programming languages everywhere 19.2 Why DSLs in Haskell? 19.3 Shallow and deep Embeddings 19.4 A DSL for regular expressions 19.5 Monadic DSLs 19.6 DSLs for computation: generating data in QuickCheck 19.7 Taking it further 20 Time and space behaviour 20.1 Complexity of functions 20.2 The complexity of calculations 20.3 Implementations of sets 20.4 Space behaviour 20.5 Folding revisited 20.6 Avoiding recomputation: memoization 21 Conclusion Appendices A Functional, imperative and 00 programming B Glossary C Haskell operators D Haskell practicalities E GHCi errors F Project ideas Bibliography 608 S. w. figs. 240 mm Sofort lieferbar, Softcover, Neuware.
2
9780201882957 - Thompson, Simon: Haskell - The Craft of Functional Programming
Thompson, Simon

Haskell - The Craft of Functional Programming (2012)

Lieferung erfolgt aus/von: Deutschland EN PB NW

ISBN: 9780201882957 bzw. 0201882957, in Englisch, Addison-Wesley Longman, Amsterdam Pearson Education, Taschenbuch, neu.

Fr. 59.60 ( 60.95)¹
versandkostenfrei, unverbindlich
Lieferung aus: Deutschland, Versandkostenfrei.
Syndikat Buchdienst, [4235284].
Introducing functional programming in the Haskell language, this book is written for students and programmers with little or no experience. It emphasises the process of crafting programmes, problem solving and avoiding common programming pitfalls. Covering basic functional programming, through abstraction to larger scale programming, students are lead step by step through the basics, before being introduced to more advanced topics.This edition includes new material on testing and domain-specific languages and a variety of new examples and case studies, including simple games. Existing material has been expanded and re-ordered, so that some concepts such as simple data types and input/output are presented at an earlier stage.BIOGRAFIE Thompson, Simon: Simon Thompson is Professor of Logic and Computation in the Computing Laboratory of the University of Kent, where he has taught computing at undergraduate and postgraduate levels for the past twenty five years, and where he has been department head for the last six.His research work has centered on functional programming: program verification, type systems, and most recently development of software tools for functional programming languages. His team has built the HaRe tool for refactoring Haskell programs, and is currently developing Wrangler to do the same for Erlang. His research has been funded by various agencies including EPSRC and the European Framework programme. His training is as a mathematician: he has an MA in Mathematics from Cambridge and a D.Phil. in mathematical logic from Oxford.He has written three books in his field of interest Type Theory and Functional Programming published in 1991 Miranda: The Craft of Functional Programming (1995) and Haskell: The Craft of Functional Programming (2nd ed. 1999). These are all published by Addison Wesley. Taschenbuch / Paperback.
3
9780201882957 - Simon Thompson: Haskell
Symbolbild
Simon Thompson

Haskell (2011)

Lieferung erfolgt aus/von: Deutschland EN PB NW

ISBN: 9780201882957 bzw. 0201882957, in Englisch, Addison Wesley Jun 2011, Taschenbuch, neu.

Fr. 54.36 ( 55.59)¹ + Versand: Fr. 16.75 ( 17.13)¹ = Fr. 71.11 ( 72.72)¹
unverbindlich
Von Händler/Antiquariat, Agrios-Buch [57449362], Bergisch Gladbach, NRW, Germany.
Neuware - Introducing functional programming in the Haskell language, this book is written for students and programmers with little or no experience. It emphasises the process of crafting programmes, problem solving and avoiding common programming pitfalls. Covering basic functional programming, through abstraction to larger scale programming, students are lead step by step through the basics, before being introduced to more advanced topics. This edition includes new material on testing and domain-specific languages and a variety of new examples and case studies, including simple games. Existing material has been expanded and re-ordered, so that some concepts such as simple data types and input/output are presented at an earlier stage. 585 pp. Englisch.
4
9780201403572 - Simon Thompson: Craft of Functional Programming
Symbolbild
Simon Thompson

Craft of Functional Programming

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB US

ISBN: 9780201403572 bzw. 0201403579, in Englisch, Pearson, Taschenbuch, gebraucht.

Fr. 16.52 ($ 18.01)¹ + Versand: Fr. 3.66 ($ 3.99)¹ = Fr. 20.17 ($ 22.00)¹
unverbindlich
Lieferung aus: Vereinigte Staaten von Amerika, In Stock.
9780201403572,0201403579,craft,functional,programming,simon,thompson, Excellent Marketplace listings for "Craft of Functional Programming" by Simon Thompson starting as low as $18.01! Paperback, Shipping to USA only!
5
9780201403572 - Simon Thompson: Haskell: The Craft of Functional Programming
Simon Thompson

Haskell: The Craft of Functional Programming

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB NW

ISBN: 9780201403572 bzw. 0201403579, in Englisch, Addison-Wesley, Taschenbuch, neu.

Fr. 39.00 ($ 42.52)¹
versandkostenfrei, unverbindlich
Lieferung aus: Vereinigte Staaten von Amerika, In Stock.
Haskell~~Simon-Thompson, Haskell: The Craft of Functional Programming, Paperback.
6
9780201882957 - Simon Thompson: Haskell
Simon Thompson

Haskell (2011)

Lieferung erfolgt aus/von: Deutschland EN PB NW

ISBN: 9780201882957 bzw. 0201882957, in Englisch, 3. Ausgabe, Addison-Wesley Educational Publishers Inc, Taschenbuch, neu.

Fr. 78.18 ( 79.95)¹
versandkostenfrei, unverbindlich
Lieferung aus: Deutschland, Versandkostenfrei in der BRD, sofort lieferbar.
Buch, Softcover, 3rd Revised edition.
7
0201403579 - Simpon Thompson: Haskell: The Craft of Functional Programming
Simpon Thompson

Haskell: The Craft of Functional Programming

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN US

ISBN: 0201403579 bzw. 9780201403572, in Englisch, Addison-Wesley, gebraucht.

Fr. 3.30 ($ 3.59)¹
versandkostenfrei, unverbindlich
Lieferung aus: Vereinigte Staaten von Amerika, In Stock.
Die Beschreibung dieses Angebotes ist von geringer Qualität oder in einer Fremdsprache. Trotzdem anzeigen
8
9780201882957 - Simon Thompson: Haskell: The Craft of Functional Programming (3rd Edition) (International Computer Science Series)
Symbolbild
Simon Thompson

Haskell: The Craft of Functional Programming (3rd Edition) (International Computer Science Series)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB NW

ISBN: 9780201882957 bzw. 0201882957, in Englisch, Addison-Wesley Professional, Taschenbuch, neu.

Fr. 52.19 ( 53.37)¹ + Versand: Fr. 3.56 ( 3.64)¹ = Fr. 55.75 ( 57.01)¹
unverbindlich
Von Händler/Antiquariat, ExtremelyReliable [8304062], RICHMOND, TX, U.S.A.
Lade…