年度諮商展
INTRODUCTION TO JAVA PROGRAMMING AND DATA STRUCTURES, COMPREHENSIVE VERSION 12/E (GE) 

INTRODUCTION TO JAVA PROGRAMMING AND DATA STRUCTURES, COMPREHENSIVE VERSION 12/E (GE) 

  • 定價:1500

分期價:(除不盡餘數於第一期收取) 分期說明

3期0利率每期500  
  • 運送方式:
  • 臺灣與離島
  • 海外
  • 可配送點:台灣、蘭嶼、綠島、澎湖、金門、馬祖
  • 可取貨點:台灣、蘭嶼、綠島、澎湖、金門、馬祖
  • 台北、新北、基隆宅配快速到貨(除外地區)
載入中...
  • 分享
 

內容簡介

  本書為JAVA基本程式設計概念和技術的基礎介紹,將程式設計、資料結構和演算法整合到一本書中,本書採用「物件在後」的撰寫方式為讀者奠定基礎。作者以問題導向的方式介紹程式設計,重點是「解決問題」,而不是語法,且本書提供大量不同難度的習題以供練習。
  -- --

  A fundamentals-first introduction to basic programming concepts andtechniques

  Introduction to Java Programming and Data Structures seamlessly integrates programming, data structures,and algorithms into one text. With a fundamentals-first approach, the textbuilds a strong foundation of basic programming concepts and techniques beforeteaching students object-oriented programming and advanced Java programming.Liang explains programming in a problem-driven way that focuses on problemsolving rather than syntax, illustrating basic concepts by example andproviding a large number of exercises with various levels of difficulty forstudents to practice. The 12th Edition is completely revised in everydetail to enhance clarity, presentation, content, examples, and exercises.

本書特色

  Reach every student by pairing this text with MyLab Programming

  MyLab™ is the teaching and learning platform that empowers you to reach every student. By combining trusted author content with digital tools and a flexible platform, MyLab personalizes the learning experience and improves results for each student.With MyLab Programming, students work through hundreds of short, auto-graded coding exercises and receive immediate and helpful feedback based on their work. Learn more about MyLab Programming.

  - Provide students with the most relevant and current coding practices
  * UPDATED - Java 9, 10, 11 and FX11 are covered to keep the text up-to-date with current technologies. Examples are improved and simplified.

  * UPDATED - Lambda expressions are used in more examples and exercises in the data structures chapters to simplify coding.

  * NEW - Both Comparable and Comparator are used to compare elements in Heap, Priority-Queue, BST, and AVLTree. This is consistent with the Java API, and is more useful and flexible.

  * NEW - String matching algorithms are introduced in Chapter 22: Developing Efficient Algorithms.

  - Help students understand the fundamentals of programming
  * UPDATED - VideoNotes Tutorials provide step-by-step video tutorials specifically designed to enhance the programming concepts presented in the text.

  * Check Points provide review questions to help students track their progress as they read through the chapter and evaluate their learning.

  * The Chapter Summary reviews the important subjects that students should understand and remember. It helps them reinforce the key concepts they have learned in the chapter.

  * Notes, Tips, Cautions, and Design Guides are inserted throughout the text to offer valuable advice and insight on important aspects of program development.

  - Foster critical-thinking and problem-solving skills
  * UPDATED - Programming Exercises are grouped by sections to provide students with opportunities to apply the new skills they have learned on their own. Additionally, more than 200 programming exercises with solutions, including several newly added exercises, are provided to the instructors on the Instructor Resource Website. These exercises are not printed in the text.

  * Problems and Case Studies teach problem-solving and programming concepts. The book uses many small, simple, and stimulating examples to demonstrate important ideas.

  * Quizzes are accessible online, grouped by sections, for students to self-test on programming concepts and techniques.

  - Reach every student with MyLab

  - Teach your course your way: Your course is unique. So whether you’d like to build your own assignments, teach multiple sections, or set prerequisites, MyLab gives you the flexibility to easily create your course to fit your needs.
  * The Exercise Editor now allows you to create new programming exercises. In addition to assigning the hundreds of programming exercises already available, you can create and assign programming exercises to customize your course.

  * Plagiarism Detection Tool alerts instructors of potential plagiarism issues by checking:
  -Students’ average submission rate.
  -Students’ average number of attempts until correct.

  - Empower each learner: Each student learns at a different pace. Personalized learning pinpoints the precise areas where each student needs practice, giving all students the support they need — when and where they need it — to be successful.
  * Interactive Practice provides first-hand programming experience in an interactive online environment.

  * The error-specific messages include both the feedback from the compiler and plain English interpretations of likely causes for the student’s incorrect answer. Feedback for many exercises includes test case tables that show a student’s output against expected output.

  * Pearson eText is a simple-to-use, personalized reading experience available within MyLab. Students can use their computer or the mobile app to easily highlight and take notes all in one place — even when offline. Seamlessly integrated videos and rich media* give students access to the help they need, when they need it. You can also share your own notes with students so they see the connection between their reading and what they learn in class.

  - Deliver trusted content: You deserve teaching materials that meet your own high standards for your course. That’s why we partner with highly respected authors to develop interactive content and course-specific resources that you can trust — and that keep your students engaged.
  * VideoNotes provide step-by-step video tutorials specifically designed to enhance the programming concepts so students can view the entire problem-solving process outside of the classroom–when they need help the most.

  * Algorithm Animations demonstrate how algorithms work.

  * Hundreds of short, auto-graded coding exercises are mapped to Introduction to Java Programming and Data Structures. For students, the system automatically detects errors in the logic and syntax of their code submissions and offers targeted hints that enable students to figure out what went wrong—and why. The exercises help students master programming fundamentals (syntax, flow of control), allowing instructors to focus on higher-level concepts (problem solving).

  - Improve student results: When you teach with MyLab, student performance often improves. That’s why instructors have chosen MyLab for over 15 years, touching the lives of over 50 million students.

  New to This Edition
  - Provide students with the most relevant and current coding practices
  * Java 9, 10, 11 and FX11 are covered to keep the text up-to-date with current technologies. Examples are improved and simplified.

  * Lambda expressions are used in more examples and exercises in the data structures chapters to simplify coding.

  * Both Comparable and Comparator are used to compare elements in Heap, Priority-Queue, BST, and AVLTree. This is consistent with the Java API, and is more useful and flexible.

  * String matching algorithms are introduced in Chapter 22: Developing Efficient Algorithms.

  - Help students understand the fundamentals of programming
  * VideoNotes Tutorials provide step-by-step video tutorials specifically designed to enhance the programming concepts presented in the text.

  - Foster critical-thinking and problem-solving skills
  * Programming Exercises are grouped by sections to provide students with opportunities to apply the new skills they have learned on their own. Additionally, more than 200 programming exercises with solutions, including several newly added exercises, are provided to the instructors on the Instructor Resource Website. These exercises are not printed in the text.
 

目錄

1. Introduction to Computers, Programs, and JavaTM
2. Elementary Programming
3. Selections
4. Mathematical Functions, Characters, and Strings
5. Loops
6. Methods
7. Single-Dimensional Arrays
8. Multidimensional Arrays
9. Objects and Classes
10. Object-Oriented Thinking
11. Inheritance and Polymorphism
12. Exception Handling and Text I/O
13. Abstract Classes and Interfaces
14. JavaFX Basics
15. Event-Driven Programming and Animations
16. JavaFX UI Controls and Multimedia
17. Binary I/O
18. Recursion
19. Generics
20. Lists, Stacks, Queues, and Priority Queues
21. Sets and Maps
22. Developing Efficient Algorithms
23. Sorting
24. Implementing Lists, Stacks, Queues, and PriorityQueues
25. Binary Search Trees
26. AVL Trees
27. Hashing
28. Graphs and Applications
29. Weighted Graphs and Applications
30. Aggregate Operations for Collection Streams

**Bonus Chapters 31–44 are available from the CompanionWebsite
31. Advanced JavaFX and FXML
32. Multithreading and Parallel Programming
33. Networking
34. Java Database Programming
35. Advanced Database Programming
36. Internationalization
37. Servlets
38. JavaServer Pages
39. JavaServer Faces
40. RMI
41. Web Services
42. 2-4 Trees and B-Trees
43. Red-Black Trees
44. Testing Using JUnit

APPENDIXES
A. Java Keywords and Reserved Words
B. The ASCII Character Set
C. Operator Precedence Chart
D. Java Modifiers
E. Special Floating-Point Values
F. Number Systems
G. Bitwise Operations
H. Regular Expressions
I. Enumerated Types
J. The Big-O, Big-Omega, and Big-Theta Notations
 

詳細資料

  • ISBN:9781292402079
  • 叢書系列:大學資訊
  • 規格:平裝 / 1240頁 / 19 x 26 x 6.2 cm / 普通級 / 單色印刷 / 12版
  • 出版地:台灣

最近瀏覽商品

 

相關活動

  • 高效率掌握法條,試題重點整理、考前複習強化記憶✰4/26~7/9 司法考試書展7折起
 

購物說明

若您具有法人身份為常態性且大量購書者,或有特殊作業需求,建議您可洽詢「企業採購」。 

退換貨說明 

會員所購買的商品均享有到貨十天的猶豫期(含例假日)。退回之商品必須於猶豫期內寄回。 

辦理退換貨時,商品必須是全新狀態與完整包裝(請注意保持商品本體、配件、贈品、保證書、原廠包裝及所有附隨文件或資料的完整性,切勿缺漏任何配件或損毀原廠外盒)。退回商品無法回復原狀者,恐將影響退貨權益或需負擔部分費用。 

訂購本商品前請務必詳閱商品退換貨原則 

  • 親子天下_加碼
  • 三采尋寶記套書加碼
  • 世界閱讀日(書評)