Get C++ Programming From Problem Analysis to Program Design 8th Edition Malik Solutions Manual free all chapters
Get C++ Programming From Problem Analysis to Program Design 8th Edition Malik Solutions Manual free all chapters
com
https://testbankfan.com/product/c-programming-from-problem-
analysis-to-program-design-8th-edition-malik-solutions-
manual/
OR CLICK HERE
DOWLOAD NOW
https://testbankfan.com/product/c-programming-from-problem-analysis-
to-program-design-8th-edition-malik-test-bank/
testbankfan.com
https://testbankfan.com/product/c-programming-from-problem-analysis-
to-program-design-7th-edition-malik-solutions-manual/
testbankfan.com
https://testbankfan.com/product/c-programming-from-problem-analysis-
to-program-design-6th-edition-malik-solutions-manual/
testbankfan.com
https://testbankfan.com/product/corporate-finance-asia-global-1st-
edition-ross-solutions-manual/
testbankfan.com
Real Estate Finance 9th Edition Wiedemer Test Bank
https://testbankfan.com/product/real-estate-finance-9th-edition-
wiedemer-test-bank/
testbankfan.com
https://testbankfan.com/product/elementary-algebra-4th-edition-carson-
test-bank/
testbankfan.com
https://testbankfan.com/product/business-intelligence-analytics-and-
data-science-a-managerial-perspective-4th-edition-sharda-test-bank/
testbankfan.com
https://testbankfan.com/product/organizational-behaviou-understanding-
and-managing-life-at-work-canadian-edition-canadian-9th-edition-johns-
test-bank/
testbankfan.com
https://testbankfan.com/product/enhanced-microsoft-
office-2013-illustrated-introductory-first-course-1st-edition-beskeen-
solutions-manual/
testbankfan.com
Health Psychology A Biopsychosocial Approach 4th Edition
Straub Test Bank
https://testbankfan.com/product/health-psychology-a-biopsychosocial-
approach-4th-edition-straub-test-bank/
testbankfan.com
C++ Programming: From Problem Analysis to Program Design, Eighth Edition 9-1
Chapter 9
Records (structs)
A Guide to this Instructor’s Manual:
We have designed this Instructor’s Manual to supplement and enhance your teaching
experience through classroom activities and a cohesive chapter summary.
This document is organized chronologically, using the same headings that you see in the
textbook. Under the headings, you will find lecture notes that summarize the section, Teacher
Tips, Classroom Activities, and Lab Activities. Pay special attention to teaching tips and
activities geared towards quizzing your students and enhancing their critical thinking skills.
In addition to this Instructor’s Manual, our Instructor’s Resources also contain PowerPoint
Presentations, Test Banks, and other supplements to aid in your teaching experience.
At a Glance
• Objectives
• Teaching Tips
• Quick Quizzes
• Additional Projects
• Additional Resources
• Key Terms
© 2018 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
C++ Programming: From Problem Analysis to Program Design, Eighth Edition 9-2
Lecture Notes
Overview
In Chapter 9, students will be introduced to a data type that can be heterogeneous. They
will learn how to group together related values that are of differing types using records,
which are also known as structs in C++. First, they will explore how to create
structs, perform operations on structs, and manipulate data using a struct.
Next, they will examine the relationship between structs and functions and learn
how to use structs as arguments to functions. Finally, students will explore ways to
create and use an array of structs in an application.
Objectives
In this chapter, the student will:
• Learn about records (structs)
• Examine various operations on a struct
• Explore ways to manipulate data using a struct
• Learn about the relationship between a struct and functions
• Examine the difference between arrays and structs
• Discover how arrays are used in a struct
• Learn how to create an array of struct items
• Learn how to create structs within a struct
Teaching Tips
Records (structs)
1. Define the C++ struct data type and describe why it is useful in programming.
Discuss how previous programming examples and projects that used parallel
Teaching
arrays or vectors might be simplified by using a struct to hold related
Tip
information.
3. Using the examples in this section, explain how to define a struct type and then
declare variables of that type.
© 2018 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
C++ Programming: From Problem Analysis to Program Design, Eighth Edition 9-3
1. Explain how to access the members of a struct using the C++ member access
operator.
2. Use the code snippets in this section to illustrate how to assign values to struct
members.
Mention that the struct and class data types both use the member access
operator. Spend a few minutes discussing the history of the struct data type
and how it relates to C++ classes and object-oriented programming. Note that the
struct is a precursor to the class data type. Explain that the struct was
introduced in C to provide the ability to group heterogeneous data members
together and, for the purposes of this chapter, is used in that manner as well.
Teaching However, in C++, a struct has the same ability as a class to group data and
Tip
operations into one data type. In fact, a struct in C++ is interchangeable with
a class, with a couple of exceptions. By default, access to a struct from
outside the struct is public, whereas access to a class from outside the
class is private by default. The importance of this will be discussed later in the
text. Memory management is also handled differently for structs and
classes.
Quick Quiz 1
1. True or False: A struct is typically a homogenous data structure.
Answer: False
4. True or False: A struct is typically defined before the definitions of all the functions
in a program.
Answer: True
Assignment
1. Explain that the values of one struct variable are copied into another struct
variable of the same type using one assignment statement. Note that this is equivalent to
assigning each member variable individually.
© 2018 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
C++ Programming: From Problem Analysis to Program Design, Eighth Edition 9-4
Ask your students why they think assignment operations are permitted on
Teaching
struct types, but not relational operations. Discuss the issue of determining
Tip
how to compare a data type that consists of other varying data types.
Input/Output
1. Note that unlike an array, aggregate input and output operations are not allowed on
structs.
Mention that the stream and the relational operators can be overloaded to provide
Teaching
the proper functionality for a struct type and, in fact, that this is a standard
Tip
technique used by C++ programmers.
2. Illustrate parameter passing with structs using the code snippets in this section.
1. Using Table 9-1, discuss the similarities and differences between structs and arrays.
Spend a few minutes comparing the aggregate operations that are allowed on
Teaching structs and arrays. What might account for the differences? Use your previous
Tip exposition on the history of structs and memory management to facilitate this
discussion.
© 2018 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
C++ Programming: From Problem Analysis to Program Design, Eighth Edition 9-5
Arrays in structs
2. Using Figure 9-5, discuss situations in which creating a struct type with an array as a
member might be useful. In particular, discuss its usefulness in applications such as the
sequential search algorithm.
structs in Arrays
1. Discuss how structs can be used as array elements to organize and process data
efficiently.
Emphasize that using a structured data type, such as a struct or class, as the
Teaching element type of an array is a common technique. Using the vector class as an
Tip example, reiterate that object-oriented languages typically have containers such
as list or array types that in turn store objects of any type.
1. Discuss how structs can be nested within other structs as a means of organizing
related data.
2. Using the employee record in Figure 9-8, illustrate how to reorganize a large amount of
related information with nested structs.
3. Encourage your students to step through the “Sales Data Analysis” Programming
Example at the end of the chapter to consolidate the concepts discussed in this chapter.
© 2018 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
C++ Programming: From Problem Analysis to Program Design, Eighth Edition 9-6
Quick Quiz 2
1. What types of aggregate operations are allowed on structs?
Answer: assignment
3. True or False: A variable of type struct may not contain another struct.
Answer: False
Additional Projects
1. Write a program that reads students’ names followed by their test scores. The program
should output each student’s name followed by the test scores and the relevant grade. It
should also find and print the lowest, highest, and average test score. Output the name
of the students having the highest test score.
Student data should be stored in a struct variable of type studentType, which has
four components: studentFName and studentLName of type string, testScore
of type int (testScore is between 0 and 100), and grade of type char. Suppose
that the class has 20 students. Use an array of 20 components of type studentType.
2. Write a program that lists all the capitals for countries in a specific region of the world.
Use an array of structs to store this information. The struct should include the
capital, the country, the continent, and the population. You might include additional
information as well, such as the languages spoken in each capital. Output the countries
with the smallest and largest populations.
© 2018 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
C++ Programming: From Problem Analysis to Program Design, Eighth Edition 9-7
Additional Resources
1. Data Structures:
http://www.cplusplus.com/doc/tutorial/structures/
2. struct (C++):
https://msdn.microsoft.com/en-us/library/64973255.aspx
Key Terms
Member access operator: the dot (.) placed between the struct and the name of one
of its members; used to access members of a struct
struct: a collection of heterogeneous components in which the components are
accessed by the variable name of the struct, the member access operator, and the
variable name of the component
© 2018 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
Other documents randomly have
different content
Thank God who seasons thus the year,
And sometimes kindly slants his rays;
For in his winter he's most near
And plainest seen upon the shortest days.
THE THAW
A WINTER SCENE[14]
The rabbit leaps,
The mouse out-creeps,
The flag out-peeps
Beside the brook;
The ferret weeps,
The marmot sleeps,
The owlet keeps
In his snug nook.
TO A STRAY FOWL
A FRAGMENT
If I am poor,
It is that I am proud;
If God has made me naked and a boor,
He did not think it fit his work to shroud.
PILGRIMS
"Have you not seen,
In ancient times,
Pilgrims pass by
Toward other climes,
With shining faces,
Youthful and strong,
Mounting this hill
With speech and with song?"
INDEPENDENCE[15]
My life more civil is and free
Than any civil polity.
DING DONG[17]
OMNIPRESENCE
Who equaleth the coward's haste,
And still inspires the faintest heart;
Whose lofty fame is not disgraced,
Though it assume the lowest part.
INSPIRATION
MISSION
DELAY
No generous action can delay
Or thwart our higher, steadier aims;
But if sincere and true are they,
It will arouse our sight, and nerve our frames.
PRAYER
WALDEN
"Men say they know many things" 46
"What's the railroad to me?" 135
"It is no dream of mine" 215
"Light-winged Smoke, Icarian bird" (Smoke) 279
EXCURSIONS
"Within the circuit of this plodding life" (Winter Memories) 103
"We pronounce thee happy, Cicada" (from Anacreon) 108
"His steady sails he never furls" 109
Return of Spring (from Anacreon) 109
"Each summer sound" 112
"Sometimes I hear the veery's clarion" 112
"Upon the lofty elm tree sprays" (The Vireo) 112
"Thou dusky spirit of the wood" (The Crow) 113
"I see the civil sun drying earth's tears" (The Thaw, part) 120
"The river swelleth more and more" (A River Scene) 120
"The needles of the pine" 133
"With frontier strength ye stand your ground" (Mountains) 133
"Not unconcerned Wachusett rears his head" 144
"The sluggish smoke curls up from some deep dell" (Smoke in
165
Winter)
"When Winter fringes every bough" (Stanzas written at Walden) 176
The Old Marlborough Road 214
"In two years' time 't had thus" 303
INDEX
Apple-howling, 298.
Ash trees, 6.
Birch, yellow, 6.
Boston (Mass.), 3, 7, 9.
Butternut tree, 6.
Caddis-worms, 170.