http://ac.jobdu.com/problem.php?cid=1040&pid=17
输入N个学生的信息,然后进行查询。
输入的第一行为N,即学生的个数(N<=1000)
输出M行,每行包括一个对应于查询的学生的信息。
4 01 李江 男 21 02 刘唐 男 23 03 张军 男 19 04 王娜 女 19 5 02 03 01 04 03
02 刘唐 男 23 03 张军 男 19 01 李江 男 21 04 王娜 女 19 03 张军 男 19
// 题目18:查找学生信息.cpp: 主项目文件。
#include "stdafx.h"
#include
#include
#include
using namespace std;
const int N=1003;
typedef struct STU
{
char no[8];
char name[100],sex[6];
int age;
}STU;
STU stu[N];
bool cmp(STU m1, STU m2)
{
return strcmp(m1.no,m2.no)<0;
}
int binarySearch(char *str, int low, int high)
{
if(low>high)
return -1;
int mid=(low+high)>>1;
if(strcmp(str,stu[mid].no)==0)
return mid;
else if(strcmp(str,stu[mid].no)<0)
{
high=mid-1;
return binarySearch(str,low,high);
}
else
{
low=mid+1;
return binarySearch(str,low,high);
}
}
int main()
{
int n;
while(scanf("%d",&n)!=EOF)
{
for(int i=0;i