[Programming] Cần giúp về lập trình C |
09/10/2013 13:05:18 (+0700) | #1 | 278694 |
|
NguoiMoi1024
Member
|
0 |
|
|
Joined: 11/02/2012 08:10:39
Messages: 12
Offline
|
|
Mong được sự giúp đỡ của diễn đàn :
su dung struct cho dinh nghia cau truc sau :
*lophoc
malop
tenlop
dssv
*sinhvien
idsv
tensv
tuoi
___
them 1 lop vao danh sach lop
chon 1 lop them vao 1 sinh vien
hien thi danh sch lop
hien thi danh sach sinh vien theo tung lop do nguoi dung nhao vao ma lop |
|
|
|
|
[Programming] Cần giúp về lập trình C |
14/10/2013 15:16:25 (+0700) | #2 | 278741 |
array
Member
|
0 |
|
|
Joined: 10/10/2013 20:08:53
Messages: 3
Offline
|
|
Bạn dùng CTDL nào, danh sách tuyến tính hay danh sách liên kết ? |
|
|
|
|
[Programming] Cần giúp về lập trình C |
15/10/2013 12:56:07 (+0700) | #3 | 278753 |
|
kidnan1991
Member
|
0 |
|
|
Joined: 20/12/2010 22:29:58
Messages: 15
Location: nghệ an
Offline
|
|
Đưa sang chỗ khác mà hỏi đi bạn ạ (congdongCviet hay vào stackoverflow chẳng hạn)
Đây là kiến thức căn bản mà
Chả hiểu có nghĩ nữa không? |
|
To be or not to be... |
|
|
|
[Programming] Cần giúp về lập trình C |
16/10/2013 17:52:21 (+0700) | #4 | 278774 |
alphax
Member
|
0 |
|
|
Joined: 02/07/2013 09:52:12
Messages: 6
Offline
|
|
cái này đơn giản mà bạn, toàn những kiến thức căn bản mà
cứ tập viết đi , sai thì sửa, đi hỏi mãi thế này bao giờ tiến bộ được
|
|
|
|
|
[Programming] Cần giúp về lập trình C |
22/10/2013 20:38:12 (+0700) | #5 | 278831 |
Bài cơ bản cho bạn tham khảo. Đây là những kiến thức hêt sức đơn giản. Lần sau bạn nên tìm hiểu kĩ trước khi post dạng bài thế này.
Code:
#include <stdio.h>
#include <conio.h>
#include <string.h>
typedef char infor1[20];
typedef float infor2;
typedef int infor3;
struct element
{ infor1 ht;
infor2 cc;
infor3 cntc;
element *next;
};
typedef element *List;
List F, L, p, t;
infor1 x;
infor2 y;
infor3 z;
int cv;
void Display(List F)
{ List p;
p=F;
while (p != NULL)
{ printf("\n %20s %7.2f %7d", (*p).ht , (*p).cc , (*p).cntc);
p=(*p).next;
}
}
List Search(List F, infor1 x)
{ List p;
p=F;
while ( (p!=NULL) && strcmp((*p).ht,x) !=0 )
p= (*p).next;
return p;
}
void InsertFirst(List &F, infor1 x, infor2 y, infor3 z)
{ List p;
p=new element;
strcpy((*p).ht,x); (*p).cc=y; (*p).cntc=z;
(*p).next=F;
F=p;
}
void InsertLast(List &F, List &L, infor1 x, infor2 y, infor3 z)
{ List p;
p=new element;
strcpy((*p).ht,x); (*p).cc=y; (*p).cntc=z;
(*p).next=NULL;
if (F==NULL) F=p;
else (*L).next=p;
L=p;
}
void InsertSort(List &F, infor1 x, infor2 y, infor3 z)
{ List p, before, after;
p=new element;
strcpy((*p).ht,x); (*p).cc=y; (*p).cntc=z;
after=F;
while ( (after!=NULL) && ( strcmp((*after).ht,x)<0 ) )
{ before=after;
after=(*after).next;
};
(*p).next=after;
if (F==after) F=p;
else (*before).next=p;
}
void Create1(List &F)
{ printf("\n Chuong trinh nhap moi danh sach theo thu tu nguoc");
F=NULL;
do
{ printf("\n nhap ho ten:"); fflush(stdin); gets(x);
if ( strlen(x)>0 )
{ printf("\n Nhap chieu cao:");
scanf("%f", &y);
z = (int)y*100-105;
InsertFirst(F,x,y,z);
}
} while ( strlen(x)>0 );
}
void Create2(List &F, List &L)
{ printf("\n Chuong trinh nhap moi danh sach theo thu tu thuan");
F=NULL; L=NULL;
do
{ printf("\n nhap ho ten:"); fflush(stdin); gets(x);
if ( strlen(x)>0 )
{ printf("\n Nhap chieu cao:");
scanf("%f", &y);
z = (int)(y*100-105);
InsertLast(F, L, x, y, z);
}
} while ( strlen(x)>0) ;
}
void Create3(List &F)
{ printf("\n Chuong trinh nhap moi danh sach theo thu tu ten");
F=NULL;
do
{ printf("\n nhap ho ten:"); fflush(stdin); gets(x);
if ( strlen(x)>0 )
{ printf("\n Nhap chieu cao:");
scanf("%f", &y);
z = (int)(y*100-105);
InsertSort(F,x,y,z);
}
} while ( strlen(x)>0 );
}
void DeleteFirst(List &F)
{ List p;
if (F!=NULL)
{ p=F;
F=(*p).next;
delete p;
}
}
void DeleteElement(List &F, List t)
{ List before, after;
after=F;
while ( ( after!=NULL) && (after!=t) )
{ before = after;
after=(*after).next;
}
if (after!=NULL)
{ if (F==t) F=(*t).next;
else (*before).next=(*t).next;
delete t;
}
}
main()
{ F=NULL; L=NULL;
do
{ printf("\n 1. Nhap moi danh sach sinh vien theo thu tu nguoc");
printf("\n 2. Liet ke danh sach");
printf("\n 3. Them 1 nguoi ten Le Them, cao 1.55 vao dau danh sach");
printf("\n 4. Them 1 nguoi vao dau danh sach");
printf("\n 5. Tim nguoi ten Le Tim");
printf("\n 6. Tim theo ten");
printf("\n 7. Xoa nguoi dau tien");
printf("\n 8. Xoa theo ho ten");
printf("\n 0. Ket thuc");
printf("\n An STT cong viec can thuc hien:");
scanf("%d", &cv);
switch (cv)
{ case 1: Create1(F);
break;
case 2: Display(F);
break;
case 3: z=1.55*100-105;
InsertFirst(F,"Le Them",1.55,z);
break;
case 4: printf("\n Nhap ho ten can them:");
fflush(stdin); gets(x);
printf("\n Nhap chieu cao:"); scanf("%f", &y);
z=y*100-105;
InsertFirst(F,x,y,z);
break;
case 5: t=Search(F,"Le Tim");
if (t!=NULL)
printf("\n %20s %7.2f %7d", (*t).ht , (*t).cc , (*t).cntc);
else printf("\n Tim khong co");
break;
case 6: printf("\n Nhap ho ten can tim:");
fflush(stdin); gets(x);
t=Search(F,x);
if (t!=NULL)
printf("\n %20s %7.2f %7d", (*t).ht , (*t).cc , (*t).cntc);
else printf("\n Tim khong co");
break;
case 7: DeleteFirst(F);
break;
case 8: printf("\n Nhap ho ten can xoa:");
fflush(stdin); gets(x);
t=Search(F,x);
if (t!=NULL)
DeleteElement(F,t);
else printf("\n Tim khong co");
break;
};
} while ( (cv>=1) && (cv<=8) );
|
|
Đời còn dài ...Tương lai còn khốn nạn |
|
|
|
|
|
|
Users currently in here |
1 Anonymous
|
|
Powered by JForum - Extended by HVAOnline
hvaonline.net | hvaforum.net | hvazone.net | hvanews.net | vnhacker.org
1999 - 2013 ©
v2012|0504|218|
|
|