KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
linked list implementation of stack
41:32
Linked List Implementation of a QUEUE
40:20
The Best Band 😅 #toshleh #viralshort
00:11
🎄✨ Puff is saving Christmas again with his incredible baking skills! #PuffTheBaker #thatlittlepuff
00:42
ЧТО ОПАСНЕЕ? ОТВЕТЫ ВАС ШОКИРУЮТ... (1% ОТВЕЧАЮТ ПРАВИЛЬНО) #Shorts #Глент
00:38
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Applications of Stack
Рет қаралды 78
Facebook
Twitter
Жүктеу
1
Жазылу 109
Right Click - Programming Made Easy
Күн бұрын
Пікірлер: 4
@ruqayamir9100
Ай бұрын
Explained beautifully
@Themathjester
Ай бұрын
Mic 😢
@aijazmir6034
Ай бұрын
Are you a teacher in gdc pattan
@rightclick80
Ай бұрын
// Header file save it as infpos.h file #include #include #define MAX 100 char stack[MAX],postf[MAX]; int top = -1; void push(char x) { stack[++top] = x; } char pop() { if(top == -1) return -1; else return stack[top--]; } int priority(char x) { if(x == '(') return 0; if(x == '+' || x == '-') return 1; if(x == '*' || x == '/') return 2; if(x == '^' || x == '$') return 3; return 0; } void inf2post(char exp[MAX]) { int i=0,j=0; char x; while(exp[i] != '\0') { if(isalnum(exp[i])) //Operand postf[j++]=exp[i]; else if(exp[i] == '(') push(exp[i]); else if(exp[i] == ')') { while((x = pop()) != '(') postf[j++]=x; } else { while(priority(stack[top]) >= priority(exp[i])) postf[j++]=pop(); push(exp[i]); } i++; } while(top!= -1) { postf[j++]=pop(); } } //Program to Convert infix expression to prefix expression #include #include #include"infpos.h" #define Max 100 char inf[Max]; int main() { int i=0; //clrscr(); printf(" Enter non-numerical expression = "); scanf("%s",inf); strrev(inf); //Reverse the infix expression while(inf[i]!='\0') { if(inf[i]=='(') //change ( to ) and vice versa the infix expression inf[i]=')'; else if (inf[i]==')') inf[i]='('; i++; } inf2post(inf); // Convert the expression to postfix expression printf(" Prefix = %s",strrev(postf)); // Reverse the converted expression return 0; } //Program to Convert infix expression to postfix expression #include #include #define MAX 100 #include"infpos.h" int main() { char exp[100]; char x; int i=0; printf("Enter infix expression "); scanf("%s",&exp); printf(" "); inf2post(exp); printf("%s",postf); return 0; }
41:32
linked list implementation of stack
Right Click - Programming Made Easy
Рет қаралды 19
40:20
Linked List Implementation of a QUEUE
Right Click - Programming Made Easy
Рет қаралды 30
00:11
The Best Band 😅 #toshleh #viralshort
Toshleh
Рет қаралды 22 МЛН
00:42
🎄✨ Puff is saving Christmas again with his incredible baking skills! #PuffTheBaker #thatlittlepuff
That Little Puff
Рет қаралды 24 МЛН
00:38
ЧТО ОПАСНЕЕ? ОТВЕТЫ ВАС ШОКИРУЮТ... (1% ОТВЕЧАЮТ ПРАВИЛЬНО) #Shorts #Глент
ГЛЕНТ
Рет қаралды 2,4 МЛН
00:26
Quando eu quero Sushi (sem desperdiçar) 🍣
Los Wagners
Рет қаралды 15 МЛН
24:07
Types of queues in data structure
Right Click - Programming Made Easy
Рет қаралды 48
20:29
Why Microcontrollers are a good AI companion
Andreas Spiess
Рет қаралды 11 М.
19:00
Count the number of possible triangles | Sorting + Two Pointer | MEDIUM
Gale Praveen
Рет қаралды 96
31:52
Sparse Matrix representation in Data Structure
Right Click - Programming Made Easy
Рет қаралды 21
12:16
7 Outside The Box Puzzles
MindYourDecisions
Рет қаралды 184 М.
30:08
Merge Sort in Data Structure | C
Right Click - Programming Made Easy
Рет қаралды 55
11:21
Insertion Sort C/ C++/ Datastructures
Right Click - Programming Made Easy
Рет қаралды 24
9:08
Selection Sort in C
Right Click - Programming Made Easy
Рет қаралды 27
10:54
Bubble Sort in C
Right Click - Programming Made Easy
Рет қаралды 27
5:12
Function Call and Declaration | C Programming
Learniverse
Рет қаралды 10
00:11
The Best Band 😅 #toshleh #viralshort
Toshleh
Рет қаралды 22 МЛН