close menu
Bookswagon-24x7 online bookstore
close menu
My Account
Home > Mathematics and Science Textbooks > Mathematics > Introduction to Programming and Problem-Solving Using Scala, Second Edition: (Chapman & Hall/CRC Textbooks in Computing)
Introduction to Programming and Problem-Solving Using Scala, Second Edition: (Chapman & Hall/CRC Textbooks in Computing)

Introduction to Programming and Problem-Solving Using Scala, Second Edition: (Chapman & Hall/CRC Textbooks in Computing)

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Praise for the first edition:

"The well-written, comprehensive book…[is] aiming to become a de facto reference for the language and its features and capabilities. The pace is appropriate for beginners; programming concepts are introduced progressively through a range of examples and then used as tools for building applications in various domains, including sophisticated data structures and algorithms…Highly recommended. Students of all levels, faculty, and professionals/practitioners. 
D. Papamichail, University of Miami in CHOICE Magazine

 

Mark Lewis’ Introduction to the Art of Programming Using Scala was the first textbook to use Scala for introductory CS courses. Fully revised and expanded, the new edition of this popular text has been divided into two books. Introduction to Programming and Problem-Solving Using Scala is designed to be used in first semester college classrooms to teach students beginning programming with Scala. The book focuses on the key topics students need to know in an introductory course, while also highlighting the features that make Scala a great programming language to learn.

The book is filled with end-of-chapter projects and exercises, and the authors have also posted a number of different supplements on the book website. Video lectures for each chapter in the book are also available on YouTube. The videos show construction of code from the ground up and this type of "live coding" is invaluable for learning to program, as it allows students into the mind of a more experienced programmer, where they can see the thought processes associated with the development of the code.

About the Authors

Mark Lewis is a Professor at Trinity University. He teaches a number of different courses, spanning from first semester introductory courses to advanced seminars. His research interests included simulations and modeling, programming languages, and numerical modeling of rings around planets with nearby moons. 

Lisa Lacher is an Assistant Professor at the University of Houston, Clear Lake with over 25 years of professional software development experience. She teaches a number of different courses spanning from first semester introductory courses to graduate level courses. Her research interests include Computer Science Education, Agile Software Development, Human Computer Interaction and Usability Engineering, as well as Measurement and Empirical Software Engineering.



Table of Contents:

Basics of Computers, Computing, and Programming
History
Hardware
Central Processing Unit
Memory
Input/Output Devices
Software
Nature of Programming
Programming Paradigms
Imperative Programming
Functional Programming
Object-Oriented Programming
Logic Programming
Nature of Scala
End of Chapter Material
Summary of Concepts
Exercises
Projects

Scala Basics
Scala Tools
Expressions, Types, and Basic Math
Objects and Methods
Other Basic Types
Back to the Numbers
Binary Arithmetic
Negative Numbers in Binary
Other Integer Types
Octal and Hexadecimal
Non-Integer Numbers
The math Object
Naming Values and Variables
Patterns in Declarations
Using Variables
Details of Char and String
Escape Characters
Raw Strings
String Interpolation
String Methods
Immutability of Strings
Sequential Execution
Comments
A Tip for Learning to Program
End of Chapter Material
Problem Solving Approach
Summary of Concepts
Self-Directed Study
Exercises

Conditionals
Motivating Example
The if Expression
Comparisons
Boolean Logic
Precedence
Nesting ifs
Bit-Wise Arithmetic
End of Chapter Material
Problem Solving Approach
Summary of Concepts
Self-Directed Study
Exercises
Projects

Functions
Motivating Example
Function Refresher
Making and Using Functions
Problem Decomposition
Function Literals/Lambda Expressions/Closure
Side Effects
Thinking about Function Execution
type Declarations
Putting It Together
End of Chapter Material
Problem Solving Approach
Summary of Concepts
Self-Directed Study
Exercises
Projects

Recursion for Iteration
Basics of Recursion
Writing Recursive Functions
User Input
Abstraction
Matching
Bad Input, Exceptions, and the try/catch Expression
Putting It Together
Looking Ahead
End of Chapter Material
Problem Solving Approach
Summary of Concepts
Self-Directed Study
Exercises
Projects

Arrays and Lists in Scala
Making Arrays
Using Arrays
Lists
Bigger Arrays and Lists with Fill and Tabulate
Standard Methods
Basic Methods
Higher-Order Methods
reduce and fold
Combinatorial/Iterator Methods
Complete Grades Script/Software Development
Playing with Data
Reading the Data
Finding Maximum Values
End of Chapter Material
Problem Solving Approach
Summary of Concepts
Self-Directed Study
Exercises
Projects

Type Basics and Argument Passing
Scala API
The Option Type
Parametric Functions
Subtyping
Variable Length Argument Lists
Mutability and Aliasing
Basic Argument Passing
Currying
Pass-By-Name
Multidimensional Arrays
Classifying Bugs
End of Chapter Material
Problem Solving Approach
Summary of Concepts
Self-Directed Study
Exercises
Projects


Loops
while Loop
do-while Loop
for Loop
Range Type
yield
if Guards
Multiple Generators
Patterns in for Loops
Variable Declarations
Multidimensional Sequences and for Loops
Testing
Putting It Together
End of Chapter Material
Problem Solving Approach
Summary of Concepts
Self-Directed Study
Exercises
Projects

Text Files
I/O Redirection
Packages and import Statements
Reading from Files
Iterators
String split Method
Reading from Other Things
Other Options (Java Based)
Writing to File
Appending to File
Use Case: Simple Encryption
Command Line Arguments
Mapping a File
Character Offset
Alphabet Flip
Key Word
Putting It Together
Primes and Real Cryptography
End of Chapter Material
Summary of Concepts
Self-Directed Study
Exercises
Projects

Case Classes
User Defined Types
case classes
Making Objects
Accessing Members
Named and Default Arguments (Advanced)
The copy Method
case class Patterns
Mutable classes
Putting It Together
End of Chapter Material
Summary of Concepts
Self-Directed Study
Exercises
Projects

GUIs
GUI Libraries and History
First Steps
Stages and Scenes
Events and Handlers
Controls
Text Controls
Button-like Controls
Selection Controls
Pickers
TableView
TreeView
Menus and FileChooser
Other Stuff
Observables, Properties, and Bindings
Numeric Properties and Bindings
Conditional Bindings
Layout and Panes
scalafx.scene.layout Panes
scalafx.scene.control Panes
Putting It Together
End of Chapter Material
Summary of Concepts
Self-Directed Study
Exercises
Projects

Graphics and Advanced ScalaFX
Shapes
Path Elements
Paint and Stroke
Basic Keyboard, Mouse, and Touch Input
Images
Writing Images to File
Transformations
Animation
Transitions
Timelines
AnimationTimer
Canvas
Settings
Basic Fills and Strokes
Building a Path
Image Operations on Canvas
A Canvas Based Game
Effects
Charts
Media
Web
3D Graphics
Putting It Together
End of Chapter Material
Summary of Concepts
Exercises
Projects

Sorting and Searching
Basic Comparison Sorts
Bubble Sort
Selection Sort (Min/Max Sort)
Insertion Sort
Testing and Verifying Sorts
Sort Visualization
Order Analysis
Shell Sort (Diminishing Gap Sort)
Searching
Sequential Search (Linear Search)
Binary Search
Sorting/Searching with case classes
Sorting Lists
Performance and Timing
Putting It Together
End of Chapter Material
Summary of Concepts
Exercises
Projects

XML
Description of XML
Tags
Elements
Attributes
Content
Special Characters
Comments
Overall Format
Comparison to Flat File
Flexibility in XML
XML in Scala
Loading XML
Parsing XML
Building XML
Writing XML to File
XML Patterns
Putting It Together
End of Chapter Material
Summary of Concepts
Self-Directed Study
Exercises
Projects

Recursion
Memory Layout
Power of Recursion
Fibonacci Numbers
Towers of Hanoi
Permutations
Mazes
Sorts
Divide and Conquer Sorts
Merge Sort
Quicksort
Putting It Together
End of Chapter Material
Summary of Concepts
Exercises
Projects

Object-Orientation
Basics of Object-Orientation
Analysis and Design of a Bank
Analysis and Design of Pac-Man™
Implementing OO in Scala
Methods and Members
Parameters as Members
Visibility
Special Methods
Property Assignment Methods
The apply Method
this Keyword
object Declarations
Applications
Introduction to Companion Objects
Revisiting the API
Implementing the Bank Example
Implementing the Pac-Man™ Example
End of Chapter Material
Summary of Concepts
Exercises
Projects

Wrapping Up
What You Have Learned
IDEs (Eclipse)
Next Steps
End of Chapter Material
Exercises

Appendix A Getting to Know the Tools
Unix/Linux (includes Mac OS X)
Command Line
Files and Directories
Aside
Helpful Tips
Permissions
Compression/Archiving
Remote
Other Commands
Redirection
Text Editors (vi/vim)
Windows
Command Line
Files and Directories
Text Editors
Edit
Notepad
Others
Other Commands
End of Appendix Material
Summary of Concepts
Exercises

B Glossary

Bibliography


Best Seller

| | See All


Product Details
  • ISBN-13: 9781498730983
  • Publisher: Taylor & Francis Inc
  • Publisher Imprint: Chapman & Hall/CRC
  • Edition: Revised edition
  • No of Pages: 566
  • ISBN-10: 1498730981
  • Publisher Date: 26 Aug 2016
  • Binding: Digital (delivered electronically)
  • Language: English
  • Series Title: Chapman & Hall/CRC Textbooks in Computing


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Introduction to Programming and Problem-Solving Using Scala, Second Edition: (Chapman & Hall/CRC Textbooks in Computing)
Taylor & Francis Inc -
Introduction to Programming and Problem-Solving Using Scala, Second Edition: (Chapman & Hall/CRC Textbooks in Computing)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Introduction to Programming and Problem-Solving Using Scala, Second Edition: (Chapman & Hall/CRC Textbooks in Computing)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    | | See All


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA