Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Define a Rectangle class that provides getLength and getWidth. Using the findMax routines like in the Figure below, write a main that creates an array

Define a Rectangle class that provides getLength and getWidth. Using the findMax routines like in the Figure below, write a main that creates an array of Rectangle and finds the largest Rectangle first on the basis of area and then on the basis of perimeter.

1 // Generic findMax, with a function object, C++ style.

2 // Precondition: a.size( ) > 0.

3 template

4 const Object & findMax( const vector & arr, Comparator isLessThan )

5 {

6 int maxIndex = 0;

7

8 for(inti=1;i

9 if( isLessThan( arr[ maxIndex ], arr[ i ] ) )

10 maxIndex = i;

11

12 return arr[ maxIndex ];

13 }

14

15 // Generic findMax, using default ordering.

16 #include

17 template

18 const Object & findMax( const vector & arr )

19 {

20 return findMax( arr, less{ } );

21 }

22

23 class CaseInsensitiveCompare

24 {

25 public:

26 bool operator( )( const string & lhs, const string & rhs ) const

27 { return strcasecmp( lhs.c_str( ), rhs.c_str( ) ) < 0; }

28 };

29

30 int main( )

31 {

32 vector arr = { "ZEBRA", "alligator", "crocodile" };

33 34 cout << findMax( arr, CaseInsensitiveCompare{ } ) << endl;

35 cout << findMax( arr ) << endl;

36 37 return 0; 38 }

---------------------------

output shoud be something like:

Largest rectangle with area R[10 20] Largest rectangle with perimeter is R[10 20]

---------------------------------------------------

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Principles Of Multimedia Database Systems

Authors: V.S. Subrahmanian

1st Edition

1558604669, 978-1558604667

Students also viewed these Databases questions

Question

Be familiar with the integrative servicescape model.

Answered: 1 week ago

Question

Determine the roles of spatial layout and functionality.

Answered: 1 week ago