第五章 C++基础 5.1 C++概述 5.2 数据和表达式 5.3 基本语句 5.4 函数 5.5 数组与指针
文件格式: PPT大小: 328KB页数: 27
const int maxLen = 128; class String { int curLen; //串的当前长度 char *ch; //串的存储数组 public: String ( const String& ob ); String ( const char * init );
文件格式: PPT大小: 183KB页数: 17
Sorting: There is a series of data in random order, we sort them depending a certain key word. Datalist: an finity set of data waiting to be sorted. Key: data object has many attribute areas, namely there are many data element, one of all these elements can be used to distinguish object, we use it as sorting key. we also call it sorting code
文件格式: PPT大小: 2.35MB页数: 75
Definition of search Static search table Dynamic search table Hash table
文件格式: PPT大小: 2.14MB页数: 89
G( V, E ) where G ::= graph, V = V( G ) ::= finite nonempty set of vertices, and E = E( G ) ::= finite set of edges
文件格式: PPT大小: 3.33MB页数: 125
1 Preliminaries 1. Terminology Lineal Tree Pedigree Tree ( binary tree )
文件格式: PPT大小: 1.64MB页数: 97
A stack is a Last-In-First-Out (LIFO) list, that is, an ordered list in which insertions and deletions are made at the top only. Objects: A finite ordered list with zero or more elements
文件格式: PPT大小: 1.53MB页数: 70
【Definition】An Abstract Data Type (ADT) is a data type that is organized in such a way that the specification on the objects and specification of the operations on the objects are separated from the representation of the objects and the implementation on the operations
文件格式: PPT大小: 1.09MB页数: 69










