⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prg7_1.cpp

📁 数据结构C++语言描术—清华大学出版的
💻 CPP
字号:
#include <iostream.h>
#pragma hdrstop

// includes template based sequential search and a sequential
// search function specific to C++ strings
#include "utils.h"

// declaration of Student and "==" for Student
#include "student.h"

void main()
{
    // three different array types
    int     list[10] = {5, 9, 1, 3, 4, 8, 2, 0, 7, 6};
    Student studlist[3] = {{1000, 3.4},{1555, 2.6},{1625, 3.8}};
    char    *strlist[5] = {"zero","one","two","three","four"};
    
    int     i, index;
    // this record is used as key to search array studlist
    Student studentKey = {1555, 0};
    
    if ((i = SeqSearch(list,10,8)) >= 0)
        cout << "Item 8 is found at index " << i << endl;
    else
		cout << "Item 8 is not found" << endl;
		
    index = SeqSearch(studlist, 3, studentKey);     
    cout << "Student 1555 has gpa " << studlist[index].gpa
    	 << endl;

    cout << "String 'two' is at index "
    	 << SeqSearch(strlist,5,"two") << endl;
}

/*
<Run of Program 7.1>
Item 8 is found at index 5
Student 1555 has gpa 2.6
String 'two' is at index 2
*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -