㈠ 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++源代碼