㈠ c语言:编写一个查找数据的功能菜单
#include <stdio.h>
#include <stdlib.h>
typedef struct student
{
int num; //学号
int score; //成绩
struct student *next; //节点的next
}stu; //学生信息节点
void main()
{
void creat(stu *);
void select(int,stu*);
void show(stu*); //函数声明
stu *L;
int flag=1,sno;
char choice;
L=(stu*)malloc(sizeof(stu));
L->next=NULL; //初始化链表
creat(L); //创建学生信息链表
show(L); //显示链表中所有学生的信息
while(flag) //控制自动循环查找
{
printf("do you want to sele\n");
getchar(); //吸收回车符
scanf("%c",&choice);
if(choice=='y'||choice=='Y')
{
printf("input the num\n");
scanf("%d",&sno);
select(sno,L);
} //用户要查找(输入'y;或者'Y'),查找学生信息
else
{
printf("select is over\n");
flag=0;
} //用户不要求查找,则退出程序
}
}
void creat(stu *L)
{
stu *r;
int number,score,flag=1;
char choice;
printf("please input the infor of student\n");
while(flag) //控制循环输入
{
printf("do you want to creat\n");
scanf("%c",&choice);
if(choice=='y'||choice=='Y')
{
printf("number:");
scanf("%d",&number);
printf("score:");
scanf("%d",&score); //输入学生信息
r=(stu*)malloc(sizeof(stu));
r->num=number;
r->score=score;
r->next=L->next;
L->next=r;
getchar();
} //用头插法将学生信息链入表中
else
{
printf("input over\n");
flag=0;
} //输入结束
}
}
void select(int number,stu *L)
{
stu *p;
p=L->next;
while(p!=NULL&&p->num!=number)//链表未结束并且未找到信息
p=p->next; //遍历链表查找对应学号
if(p->num==number)
{
printf("the infor of this stu is:\n");
printf("num:%d,score:%d\n",p->num,p->score);
} //找到对应学号,则输出节点内容
else if(p==NULL)
printf("can not find\n");
}//查找学号 //未找到学号信息
void show(stu *L)
{
stu *p;
p=L->next;
while(p!=NULL) //链表未结束
{
printf("num:%d,score:%d",p->num,p->score);//输出链表中内容
p=p->next; //指针后移
}
printf("\n");
}//显示链表中内容
程序在VC6.0中调试通过!按照提示输入信息即可
㈡ C语言查找数组中的值
if(num[i]=search) 这句错了,改成if(num[i]==search)
㈢ C语言一维数组中如何查找指定元素
1、打开pycharm,新建Test_List.py,如图所示。
㈣ C语言题目:在数组中查找指定元素
#include <stdio.h>
#define MAXN 10
int search( int list[], int n, int x );
int main()
{
int i, index, n, x;
int a[MAXN];
printf("输入个数: ");
scanf("%d",&n);
for( i = 0; i < n; i++ )
scanf("%d", &a[i]);
printf("输入x: ");
scanf("%d", &x);
index = search( a, n, x );
if( index != -1 )
printf("index = %d ", index);
else
printf("Not found ");
return 0;
}
int search( int list[], int n, int x ){
int i;
for(i=0;i<n;i++){
if(x==list[i])
return i;
}
return -1;
}
(4)c语言数据查找扩展阅读:
数组使用规则:
1.可以只给部分元素赋初值。当{ }中值的个数少于元素个数时,只给前面部分元素赋值。例如:static int a[10]={0,1,2,3,4};表示只给a[0]~a[4]5个元素赋值,而后5个元素自动赋0值。
2.只能给元素逐个赋值,不能给数组整体赋值。例如给十个元素全部赋1值,只能写为:static int a[10]={1,1,1,1,1,1,1,1,1,1};而不能写为:static int a[10]=1;请注意:在C、C#语言中是这样,但并非在所有涉及数组的地方都这样,数据库是从1开始。
3.如不给可初始化的数组赋初值,则全部元素均为0值。
4.如给全部元素赋值,则在数组说明中, 可以不给出数组元素的个数。例如:static int a[5]={1,2,3,4,5};可写为:static int a[]={1,2,3,4,5};动态赋值可以在程序执行过程中,对数组作动态赋值。这时可用循环语句配合scanf函数逐个对数组元素赋值。
网络-数组
㈤ C语言如何实现数据库查询功能
这个你试一下C语言如何调用ADODB访问数据库
如果是mysql之类 只要找个mysql的例子来看就可以的 mysql有库和头文件可以用
㈥ 数据结构代码(用C语言)数据查找
数据结构C源代码,数据结构(严慰敏)配套纯C代码
ftp://218.16.224.142/testdoc/%B5%C8%BC%B6%BF%BC%CA%D4/%CA%FD%BE%DD%BD%E1%B9%B9%A3%A8%D1%CF%CE%BF%C3%F4%A3%A9%C5%E4%CC%D7%B4%BFc%B4%FA%C2%EB.rar
树和二叉树在第6章,文件在ch6文件夹内
数据结构(严慰敏)原书配套的光盘是伪C/C++源代码