集合与静态查找表
0.1
数据结构_第8章
|
程序设计题第5题:不等概无序表顺序查找的简单优化 More...
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <fstream>
#include <iostream>
#include <vector>
Go to the source code of this file.
Namespaces | |
Find | |
Functions | |
template<class InputIterator , class T > | |
InputIterator | Find::rfind (InputIterator rbegin, InputIterator rend, const T &val) |
顺序查找一个顺序单链表 More... | |
int | main (int argc, char const *argv[]) |
测试程序 More... | |
程序设计题第5题:不等概无序表顺序查找的简单优化
See the file LICENSE in the top directory of this distribution for more information.
Definition in file ch8_5.cc.
int main | ( | int | argc, |
char const * | argv[] | ||
) |
测试程序
argc | 参数个数 |
argv | 参数数组 |
部分测试结果将输出到一个文本文档中
Definition at line 71 of file ch8_5.cc.
References Find::rfind().