Presentation is loading. Please wait.

Presentation is loading. Please wait.

Main Index Contents 11 Main Index Contents Storage Containers -GeneralGeneral -Vectors (3 slides)Vectors -ListsLists -MapsMaps ADT’s ADT’s ADT’s (2 slides)Classes.

Similar presentations


Presentation on theme: "Main Index Contents 11 Main Index Contents Storage Containers -GeneralGeneral -Vectors (3 slides)Vectors -ListsLists -MapsMaps ADT’s ADT’s ADT’s (2 slides)Classes."— Presentation transcript:

1 Main Index Contents 11 Main Index Contents Storage Containers -GeneralGeneral -Vectors (3 slides)Vectors -ListsLists -MapsMaps ADT’s ADT’s ADT’s (2 slides)Classes -DeclarationDeclaration -Private/Public Sections (3 slides)Private/Public Sections time24 function addTime() time24 function addTime() Chapter 1 – Introduction to Object Technology Scope Resolution Operator Scope Resolution Operator Rectangle Class Rectangle ClassRectangle Class Rectangle Class (4 slides)API -ConstructorConstructor -OperationsOperations -randomNumber Class (2 slides)randomNumber Class Generating Random Numbers Generating Random Numbers String Functions and OperationsString Functions and Operations String Functions and Operations (6 slides) String Functions and Operations Summary SlidesSummary Slides Summary Slides (9 slides) Summary Slides

2 Main Index Contents 2 Storage Containers ( General ) Airlines and telecommunication companies use a grid of nodes and interconnecting edges to represent cities and routers in a network. Containers such as vectors, lists or maps are storage structures that provide ways to access data and insert/delete items. Example

3 Main Index Contents 33 Main Index Contents

4 Main Index Contents 4 Storage Containers ( Vectors) A vector has all of the nice indexing features of an array along with the ability to dynamically grow to meet demand. // output elements of v for (i = 0; i < v.size(); i++) cout << v[i] << " " Output:74931

5 Main Index Contents 5 Storage Containers ( Vectors) A vector is a "super-array“, meaning all familiar array algorithms work. You also have the freedom to to grow or shrink it.

6 Main Index Contents 6 Storage Containers ( Vectors) Vectors allow for direct access to their elements through an index, but are not efficient storage structures for: – insertion of items at arbitrary positions in a list. – deletion of items at arbitrary positions in a list.

7 Main Index Contents 77 Main Index Contents

8 Main Index Contents 8 Storage Containers ( Lists ) list container – each element has a reference that identifies the next item in the list. – Adding a new item involves breaking a link in the chain and creating two new links to connect the item.

9 Main Index Contents 9 Storage Containers ( Maps ) maps use a tree structure to store data. – A is a container that stores elements as nodes emanating from a root. TREE

10 Main Index Contents 10 A search tree holding airbill numbers The tree holds 8 elements. Any search requires at most 3 movements along a path from the root. BACK

11 Main Index Contents 11 Main Index Contents Abstract Data Types ADT Operation Description operationName: Action statement that specifies the input parameters, the type of operation on the elements of the data structure, and the output parameter Preconditions: Necessary conditions that must apply to the input parameters and the current state of the object to allow successful execution of the operation. Postconditions: Changes in the data of the structure caused by the operation.

12 Main Index Contents 12 Main Index Contents Abstract Data Types ( time24 Class ) duration(t): Time t is an input parameter. Measure the length of time from the current time to time t and return the result as a time24 value. Precondition: Time t must not be earlier than the current time

13 Main Index Contents 13 Classes ( Declaration )

14 Main Index Contents 14 Classes ( Private/Public Sections) The public and private sections in a class declaration allow program statements outside the class different access to the class members.

15 Main Index Contents 15 Classes ( Private/Public Sections) Public members of a class are the interface of the object to the program. – Any statement in a program block that declares an object can access a public member of the object

16 Main Index Contents 16 Classes ( Private/Public Sections) The private section typically contains the data values of the object and utility functions that support class implementation. – Only member functions of the class may access elements in the private section.

17 Main Index Contents 17 Main Index Contents Runtime execution of the time24 function addTime()

18 Main Index Contents 18 Scope resolution Operator The symbol "::" signals the compiler that the function is a member of the class. – The statements in the function body may access all of the public and private members of the class. The “::” operator allows you to code a member function like any other free function. returnType className::functionName(argument list) { }

19 Main Index Contents 19 Main Index Contents CLASS rectangleDeclaration“d_rect.h” // maintains measurement properties of a //rectangle class rectangle { public: // constructor. initializes length and // width rectangle(double len = 0.0, double wid = 0.0): length(len), width(wid) {}

20 Main Index Contents 20 Main Index Contents CLASS rectangleDeclaration“d_rect.h” // return the area (length * width) double area() const { return length * width; } // return the perimeter (2 * (length + // width)) double perimeter() const { return 2 * (length + width); }

21 Main Index Contents 21 Main Index Contents CLASS rectangleDeclaration“d_rect.h” // change the dimensions of the // rectangle to len and wid void setSides(double len, double wid) { length = len; width = wid; } // return the length of the rectangle double getLength() const { return length; }

22 Main Index Contents 22 Main Index Contents CLASS rectangleDeclaration“d_rect.h” // return the width of the rectangle double getWidth() const { return width; } private: double length, width; };

23 Main Index Contents 23 API ( Constructor ) CLASS classNameConstructors“.h” className( ); Initializes the attributes of the object Postconditions: Initial status of the object

24 Main Index Contents 24 API ( Operations ) CLASS classNameOperations“.h” returnType functionName(argument list); Description of the action of the function and any return value Preconditions:Necessary state of the object before executing the operation. Any exceptions that are thrown when an error is detected. Postconditions:State of the data items in the object after executing the operation ….

25 Main Index Contents 25 API ( randomNumber Class) CLASS randomNumber Constructors “d_random.h” randomNumber(int seed = 0); Sets the seed for the random number generator Postconditions:With the default value 0, the system clock initializes the seed; otherwise the user provides the seed for the generator

26 Main Index Contents 26 API ( randomNumber Class) CLASS randomNumber Operations “d_random.h” double frandom(); Return a real number x, 0.0 <= x < 1.0 int random(); Return a 32-bit random integer m, 0 <= m < 2 31 -1 int random(int n); Return a random integer m, 0 <= m < n

27 Main Index Contents 27 Main Index Contents Generating Random Numbers The loop generates 5 integer random numbers in the range 0 to 40 and 5 real random numbers in the range 0 to 1. int item, i; double x; for (i = 0; i < 5; i++) { item = rndA.random(40); // 0 <= item < 40 x = rndB.frandom(); // 0.0 <= x < 1.0 cout << item << " " << x; }

28 Main Index Contents 28 String Functions and Operations int find_first_of(char c, int start = 0): c start Look for the first occurrence of c in the string beginning at index start. Return the index of the match if it occurs; otherwise return -1. start By default, start is 0 and the function searches the entire string.

29 Main Index Contents 29 String Functions and Operations int find_last_of(char c): c Look for the last occurrence of c in the string. Return the index of the match if it occurs; otherwise return -1. Since the search seeks a match in the tail of the string, no starting index is provided.

30 Main Index Contents 30 String Functions and Operations string substr(int start = 0, int count = -1): start Copy count characters from the string beginning at index start and return the characters as a substring. If the tail of the string has fewer than count characters or count is -1, the copy stops at end-of-string. start By default, start is 0 and the function copies characters from the beginning of the string. Also by default, the function copies the tail of the string.

31 Main Index Contents 31 String Functions and Operations int find(const string& s, int start = 0): s s The search takes string s and index start and looks for a match of s as a substring. Return the index of the match if it occurs; otherwise return - 1. start By default, start is 0 and the function searches the entire string.

32 Main Index Contents 32 String Functions and Operations void insert(int start, const string& s): s start Place the substring s into the string beginning at index start. The insertion expands the size of the original string.

33 Main Index Contents 33 String Functions and Operations void erase(int start = 0, int count = -1): start Delete count characters from the string beginning at index start. If fewer than count characters exist or count is -1, delete up to end-of-string. start By default, start is 0 and the function removes characters from the beginning of the string. Also by default, the function removes the tail of the string. Note that no arguments at all truncates the string to the empty string with length 0

34 Main Index Contents 34 Main Index Contents Summary Slide 1 §- A data structure is a systematic way of organizing and accessing data. §- Programmer-defined data structures bundle data with operations that manipulate the data. §- The structures, called containers have operations to access, insert, and remove items from the collection.

35 Main Index Contents 35 Main Index Contents Summary Slide 2 §- Arrays have some limitations: 1)fixed size. 2)No automatic growth to meet the needs of an application.(Solution -> Use Vector Containers) 3)insertion and deletion inside the array requires the costly movement of data either to the right or to the left.(Solution -> Use List Containers) §- Efficient access to an element requires knowledge of its position in the list.

36 Main Index Contents 36 Main Index Contents Summary Slide 3 §- Abstract Data Types (ADT’s) are a model used to understand the design of a data structure. §- ADT’s specify the type of data stored and the operations that support the data. §- Viewing a data structure as an ADT allows a programmer to focus on an idealized model of the data and its operations.

37 Main Index Contents 37 Main Index Contents Summary Slide 3a §- An ADT provides simple and clear description of: 1)the input to an operation. 2)the action of the operation. 3)its return type. Preconditions §- Preconditions: Part of the description of an operation. A listing of the conditions that must apply in order for the operation to execute successfully. Postconditions §- Postconditions: Indicate changes to the object's data caused by the operation. Necessary because operations often alter the value of data.

38 Main Index Contents 38 Main Index Contents Summary Slide 4 §- The private section of a class contains the data and operations that the public member functions use in their implementation. §- The splitting of a class into public and private parts is known as information hiding. §- A class encapsulates information by bundling the data items and operations within an object.

39 Main Index Contents 39 Main Index Contents Summary Slide 5 §- The implementation of C++ class member functions is different from the implementation of free functions. :: -Each function name must include the class scope operator :: that designates class membership. §- The constructor is a special function with no return type. -The constructor initializes the data members of the class by using its initialization list.

40 Main Index Contents 40 Main Index Contents Summary Slide 6 §- A member function can be implemented inside the class declaration by using inline code. ; 1)The semicolon (;) in the function prototype is replaced by the function body. 2)The compiler inserts the statements in the function body in place of the function, avoiding the function call and return mechanism. §- The process provides efficiency at the expense of increased code size.

41 Main Index Contents 41 Main Index Contents Summary Slide 7 Application Programming Interface §- Application Programming Interface: -Allows other programmers to use the public interface of the class without having to view the technical details of the class declaration or implementation.

42 Main Index Contents 42 Main Index Contents Summary Slide 8 §- C++ provides two approaches to string handling. 1)Older Method 1)Older Method: C-style string - a character array that designates the end of the string by using the NULL character. §-Used by the C programming language and older C++ programs. 2) Modern Method 2) Modern Method: string class - provides a large public interface containing many useful operations. §-Example: I/O operations.


Download ppt "Main Index Contents 11 Main Index Contents Storage Containers -GeneralGeneral -Vectors (3 slides)Vectors -ListsLists -MapsMaps ADT’s ADT’s ADT’s (2 slides)Classes."

Similar presentations


Ads by Google