KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
BALANCED PARENTHESIS - STACK | DATA STRUCTURES
16:03
Infix to Postfix conversions example | Data Structures | Lec-15 | Bhanu Priya
12:14
This Game Is Wild...
00:19
Этот беспредельщик ПЕРЕШЁЛ ЧЕРТУ и за это был СЕРЬЁЗНО НАКАЗАН #shorts
01:41
He Hid His Second Girl Under the Bed! 😱🛏️ #prank #wife #comedy
00:31
Помоги Тревожности Головоломка 2 Найти Двойника Шин Тейпс Кетнепа
00:32
Evaluate Postfix Expression using Stack
Рет қаралды 16,397
Facebook
Twitter
Жүктеу
1
Жазылу 17 М.
nETSETOS
Күн бұрын
Пікірлер: 14
@girishkumargoyal5480
4 жыл бұрын
videos are great for understand algorithms......
@nETSETOStECH
4 жыл бұрын
Thank you friend. Share with your friends also.😀
@somalasresthasomala8974
3 жыл бұрын
GREAT VIDEO, truly appreciate your efforts!
@meitarG
7 ай бұрын
And what will happen if we don't have 2 numbers at the beginning of the array? or if we divide by zero? [5,*,2,/,0,*,+,3,-]
@tejoram2265
3 жыл бұрын
thanks you great video
@husseindarwish8731
3 жыл бұрын
Thank you for video My question How to do simulation of expression evaluation using stack?
@ramilashraf2669
3 жыл бұрын
for this [5,1,2,/,4,*,+,3,-] the output should be 4 but its showing 2
@kishorereddy9453
11 ай бұрын
Return value should be stack[0] not stack [-1]
@KrishnaManohar8021
4 жыл бұрын
Please build the program, then we easily understand flow of the program.
@nETSETOStECH
4 жыл бұрын
Python program is also attached in Github github.com/netsetos/python_code/blob/master/eval_expression.py
@sarveshrai4286
4 жыл бұрын
if exprn is=['2','3','*','+','4'] then what will happen
@shazznomani1368
4 жыл бұрын
I think this isn't postfix expression, it should be [2, 3, *, 4, +]
@adityajadhav879
10 ай бұрын
def eval_expression(arr): stack = [] operator = ["+", "-", "*", "/", "%"] for item in arr: if item not in operator: stack.append(int(item)) # Convert the operand to an integer else: first = int(stack.pop()) sec = int(stack.pop()) if item == "+": stack.append(sec + first) elif item == "-": stack.append(sec - first) elif item == "*": stack.append(sec * first) elif item == "/": stack.append(sec / first) elif item == "%": stack.append(sec % first) return stack[-1] A = ["7", "5", "3", "-", "2", "*", "+"] print(eval_expression(A)) "CORRECT CODE "
@黑人問號-z3i
3 жыл бұрын
....it's must have a troblem 14 2 - 3 / 7 11 * + ↑it can't run...
16:03
BALANCED PARENTHESIS - STACK | DATA STRUCTURES
nETSETOS
Рет қаралды 11 М.
12:14
Infix to Postfix conversions example | Data Structures | Lec-15 | Bhanu Priya
Education 4u
Рет қаралды 1,6 МЛН
00:19
This Game Is Wild...
MrBeast
Рет қаралды 157 МЛН
01:41
Этот беспредельщик ПЕРЕШЁЛ ЧЕРТУ и за это был СЕРЬЁЗНО НАКАЗАН #shorts
BalcevMMA_BOXING
Рет қаралды 7 МЛН
00:31
He Hid His Second Girl Under the Bed! 😱🛏️ #prank #wife #comedy
Skitsters
Рет қаралды 1,2 МЛН
00:32
Помоги Тревожности Головоломка 2 Найти Двойника Шин Тейпс Кетнепа
Ной Анимация
Рет қаралды 3,7 МЛН
25:35
INFIX TO POSTFIX NOTATION - Expression Parsing using Stacks | Data Structure and Algorithm
Tech Course PH
Рет қаралды 5 М.
21:13
Towers of Hanoi: A Complete Recursive Visualization
Reducible
Рет қаралды 491 М.
22:47
Application of Stacks (Infix to Postfix) - Part 8
Neso Academy
Рет қаралды 48 М.
8:03
How to STUDY so FAST it feels like CHEATING
The Angry Explainer
Рет қаралды 1,8 МЛН
14:10
Stacks and Queues (Python) - Data Structures and Algorithms
Caleb Curry
Рет қаралды 60 М.
19:20
Infix to Postfix | Expression evaluation | C-Programming | Gate Applied Course
GATE Applied Course
Рет қаралды 230 М.
20:10
3.6 Infix to Postfix using Stack | Data Structures Tutorials
Jenny's Lectures CS IT
Рет қаралды 1,8 МЛН
15:28
TRAPPING RAIN WATER | python code
nETSETOS
Рет қаралды 14 М.
18:49
Application of Stacks (Infix to Postfix) - Part 6
Neso Academy
Рет қаралды 156 М.
00:19
This Game Is Wild...
MrBeast
Рет қаралды 157 МЛН