- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
STACK- nhập xâu kí tự
mình nhạp xâu nhwung khi in ra lại toàn in ra số. mn xem giúp e lỗi ở đâu ạ. #include<iostream> #include<string.h> using namespace std; struct node{ int data; struct node *next; }; typedef struct node *stack; void init(stack &s){ s=NULL; } node *getnode(char x){ node *p=new ...
nhập xâu kí tự dùng stack
Bài này mình nhập xâu kí tự nhưng khi in lại ra toàn số. mn xem sai ở đâu giúp mk vs. #include #include<string.h> using namespace std; struct node{ int data; struct node *next; }; typedef struct node *stack; void init(stack &s){ s=NULL; } node *getnode(char x){ node *p=new ...
quản lý sinh viên dùng dslk
Kết thúc kì nghỉ lễ, bắt đầu hk thôi. Mn giúp em bài này, em k hiểu sai ở cú pháp nào nhưng chajy toàn bị dừng. Mn xem và chỉ giúp e #include<iostream> #include<string.h> using namespace std; struct sv{ char ten[20]; char masv[10]; char que[20]; }; struct node { sv data; struct ...
Hàng đợi ưu tiên
Mn giúp em bài này với. Nó cứ báo hàng đợi rỗng. e k biết sai ở đâu #include<iostream> using namespace std; struct node { int data; int prior; struct node *next; }*front; void init(){ front =NULL; } void push(int x,int prior){ node *p,*s; p->data=x; p->prior=prior; if(front ...
Cây nhị phân tìm kiếm, chạy nhưng không in ra kết quả là sao?
Mn xem giúp mk bài này. Nó có chạy nhưng không in ra kết quả là sao? #include<iostream> using namespace std; struct Node { int data; Node *left; Node *right; }; Node *getnode(int x){ Node *p=new Node(); p->data=x; p->left= p->right=NULL; return p; } Node *findinsert(Node ...
Danh sách liên kết đơn với số nguyên
mn cop bài này về rồi chạy giúp mk với. mk k hiểu vì sao nó cứ báo rỗng #include<iostream> #include<string> using namespace std; struct Node{ int data; struct Node *next; }*start; void Init(Node *p){ start=NULL; } Node *getnode(int x){ Node *p=new Node; p->data=x; p->next ...
Cài đặt stack bằng mảng
Mn sửa giúp mk bài này vs. Nó k chạy đk là sao? #include<iostream> #define max 100 using namespace std; typedef struct stack{ int top; int node[max]; }; void Init(stack *s){ s->top=0; } int Empty(stack *s){ if(s->top==-1) return 1; return 0; } int Full(stack ...
Danh sách liên kết đơn với số nguyên bị lỗi has stopped working
mn giúp e bài này với. e chạy bài này nhưng khi nhập xong nó ra cửa sổ exe has stopped working. Là vì sao ạ? #include<iostream> using namespace std; struct node{ int data; struct node *next; }; typedef struct node Node; Node *getnode(int x){ Node *p=new Node; Node *head; if(head == ...
MẢNG VÀ XÂU trong danh sách liên kết đơn
mn giúp mk với. cái dòng nhập tên vào danh sách liên kết đơn báo sai là sao? #include<iostream> #include<string.h> #include<stdlib.h> using namespace std; struct sv{ int masv; string ten; int diemtoan,diemvan,diemtb; }; struct node{ sv data; struct node ...
Danh sach lien ket don
mk viết chương trình nhưng khi chạy nó cứ hiện ra cái màn hình đen vảo file .exe has stopped working. mn giúp mk vs.