Animated Problem Solving: An Introduction to Program Design Using Video Game Development: Texts in Computer Science
Autor Marco T. Morazánen Limba Engleză Hardback – 14 ian 2022
The book is divided in five parts. Part I focuses on the basics. It starts with how to write expressions and subsequently leads to decision making and functions as the basis for problem solving. Part II then introduces compound data of finite size, while Part III covers compound data of arbitrarysize like e.g. lists, intervals, natural numbers, and binary trees. It also introduces structural recursion, a powerful data-processing strategy that uses divide and conquer to process data whose size is not fixed. Next, Part IV delves into abstraction and shows how to eliminate repetitions in solutions to problems. It also introduces generic programming which is abstraction over the type of data processed. This leads to the realization that functions are data and, perhaps more surprising, that data are functions, which in turn naturally leads to object-oriented programming. Part V introduces distributed programming, i.e., using multiple computers to solve a problem.
This book promises that by the end of it readers will have designed and implemented a multiplayer video game that they can play with their friends over the internet. To achieve this, however, there is a lot about problem solving and programming that must be learned first. The game is developed using iterative refinement. The reader learns step-by-step about programming and how to apply new knowledge to develop increasingly better versions of the video game. This way, readers practice modern trends that are likely to be common throughout a professional career and beyond.
Toate formatele și edițiile | Preț | Express |
---|---|---|
Paperback (1) | 376.78 lei 43-57 zile | |
Springer International Publishing – 15 ian 2023 | 376.78 lei 43-57 zile | |
Hardback (1) | 444.93 lei 22-36 zile | +49.74 lei 5-11 zile |
Springer International Publishing – 14 ian 2022 | 444.93 lei 22-36 zile | +49.74 lei 5-11 zile |
Din seria Texts in Computer Science
- 20% Preț: 474.58 lei
- 20% Preț: 675.35 lei
- 20% Preț: 409.70 lei
- 20% Preț: 306.35 lei
- 20% Preț: 379.63 lei
- 20% Preț: 1219.13 lei
- 20% Preț: 406.21 lei
- 20% Preț: 392.09 lei
- 20% Preț: 305.30 lei
- 20% Preț: 412.42 lei
- 20% Preț: 473.73 lei
- 20% Preț: 370.59 lei
- 20% Preț: 503.87 lei
- 20% Preț: 370.22 lei
- 20% Preț: 515.34 lei
- 15% Preț: 624.69 lei
- 20% Preț: 378.48 lei
- 20% Preț: 349.64 lei
- 20% Preț: 178.22 lei
- 20% Preț: 323.77 lei
- 20% Preț: 386.63 lei
- 20% Preț: 728.56 lei
- 20% Preț: 650.04 lei
- Preț: 448.55 lei
- 20% Preț: 525.82 lei
- 20% Preț: 351.02 lei
- Preț: 378.08 lei
- 20% Preț: 337.81 lei
- 20% Preț: 608.62 lei
- 20% Preț: 343.79 lei
- 20% Preț: 341.88 lei
- 20% Preț: 339.95 lei
- 20% Preț: 576.31 lei
- 20% Preț: 195.50 lei
- 20% Preț: 334.43 lei
- 23% Preț: 726.93 lei
- 20% Preț: 318.76 lei
- 20% Preț: 583.77 lei
- 20% Preț: 581.48 lei
- Preț: 454.30 lei
- 20% Preț: 524.11 lei
Preț: 444.93 lei
Preț vechi: 556.16 lei
-20% Nou
Puncte Express: 667
Preț estimativ în valută:
85.15€ • 88.45$ • 70.73£
85.15€ • 88.45$ • 70.73£
Carte disponibilă
Livrare economică 13-27 ianuarie 25
Livrare express 27 decembrie 24 - 02 ianuarie 25 pentru 59.73 lei
Preluare comenzi: 021 569.72.76
Specificații
ISBN-13: 9783030850906
ISBN-10: 3030850900
Pagini: 690
Ilustrații: XIX, 688 p. 200 illus., 88 illus. in color.
Dimensiuni: 155 x 235 x 49 mm
Greutate: 1.22 kg
Ediția:1st ed. 2022
Editura: Springer International Publishing
Colecția Springer
Seria Texts in Computer Science
Locul publicării:Cham, Switzerland
ISBN-10: 3030850900
Pagini: 690
Ilustrații: XIX, 688 p. 200 illus., 88 illus. in color.
Dimensiuni: 155 x 235 x 49 mm
Greutate: 1.22 kg
Ediția:1st ed. 2022
Editura: Springer International Publishing
Colecția Springer
Seria Texts in Computer Science
Locul publicării:Cham, Switzerland
Cuprins
Part I: The Basics of Problem Solving with a Computer.- 1. The Science of Problem Solving.- 2. Expressions and Data Types.- 3. The Nature of Functions.- 4. Aliens Attack Version 0.- 5. Making Decisions.- 6. Aliens Attack Version 1.- Part II: Compound Data of Finite Size.- 7. Structures.- 8. Defining Structures.- 9. Aliens Attack Version 2.-10. Structures and Variety.- 1.1Aliens Attack Version 3.- Part III: Compound Data of Arbitrary Size.- 12. Lists.- 13. List Processing.- 14. Natural Numbers.- 15. Interval Processing.- 16. Aliens Attack Version 4.- 17. Binary Trees.- 18.- Mutually Recursive Data.- 19.- Processing Multiple Inputs of Arbitrary Size.- Part IV: Abstraction.- 20. Functional Abstraction.- 21. Encapsulation.- 22. Lambda Expressions.- 23. Aliens Attack Version 5.- 24. For-Loops and Pattern Matching.- 25. Interfaces and Objects.- Part V: Distributed Programming.- 26. Introduction to Distributed Programming.- 27. Aliens Attack Version 6.- 28. Aliens Attack Version 7.- 29. Aliens Attack Version 8.- Part VI: Epilogue.- 30. Advice for Future Steps.
Notă biografică
Marco T. Morazán joined Seton Hall University in 1999 where he teaches at all levels of the Computer Science curriculum including his signature courses on Problem Solving and Programming. He is a strong proponent of program by design in which types guide program development and the author of multiple peer-reviewed articles on computer science education and the implementation of programming languages. Animated Problem Solving is the result of over ten years learning from his students how to teach them type-based programming.
Textul de pe ultima copertă
This textbook is about systematic problem solving and systematic reasoning using type-driven design. There are two problem solving techniques that are emphasized throughout the book: divide and conquer and iterative refinement. Divide and conquer is the process by which a large problem is broken into two or more smaller problems that are easier to solve and then the solutions for the smaller pieces are combined to create an answer to the problem. Iterative refinement is the process by which a solution to a problem is gradually made better–like the drafts of an essay. Mastering these techniques are essential to becoming a good problem solver and programmer.
The book is divided in five parts. Part I focuses on the basics. It starts with how to write expressions and subsequently leads to decision making and functions as the basis for problem solving. Part II then introduces compound data of finite size, while Part III covers compound data of arbitrary size likee.g. lists, intervals, natural numbers, and binary trees. It also introduces structural recursion, a powerful data-processing strategy that uses divide and conquer to process data whose size is not fixed. Next, Part IV delves into abstraction and shows how to eliminate repetitions in solutions to problems. It also introduces generic programming which is abstraction over the type of data processed. This leads to the realization that functions are data and, perhaps more surprising, that data are functions, which in turn naturally leads to object-oriented programming. Part V introduces distributed programming, i.e., using multiple computers to solve a problem.
This book promises that by the end of it readers will have designed and implemented a multiplayer video game that they can play with their friends over the internet. To achieve this, however, there is a lot about problem solving and programming that must be learned first. The game is developed using iterative refinement. The reader learns step-by-step about programming and how to apply new knowledge to develop increasingly better versions of the video game. This way, readers practice modern trends that are likely to be common throughout a professional career and beyond.
This book promises that by the end of it readers will have designed and implemented a multiplayer video game that they can play with their friends over the internet. To achieve this, however, there is a lot about problem solving and programming that must be learned first. The game is developed using iterative refinement. The reader learns step-by-step about programming and how to apply new knowledge to develop increasingly better versions of the video game. This way, readers practice modern trends that are likely to be common throughout a professional career and beyond.
Caracteristici
Introduces systematic problem solving and reasoning, from basics like expression writing to distributed programming Emphasizes type-driven design using divide and conquer and iterative refinement Develops a video game step-by-step by applying new knowledge in increasingly better versions