What is Stack in hindi
Stack एक Storage Structure होता है जो Information को कुछ इस तरह Store करता है कि जो Item Last में Store किया जाए उसे सबसे पहले Retrieve किया जाए ।
यह LIFO के Principle पर Based होता है जिसका मतलब होता है Last In First Out .
Digital System में Stack , Resister के साथ Memory Location का Group होता है जो Top of Element का Address Hold करता है.
वह Resister जो Stack के Top of Element के Address को Hold करता है उसे Stack Pointer कहते हैं ।
Stack Organization Most Computer के CPU में Useful Feature होता है. Stack Organization Memory को Stack के form में Present करने की Technique होती है .
Operations Of Stack
Stack में दो Operations किए जाते हैं
- Push
- Pop
Push
Stack में Information को Insert करना Push कहलाता है .
Pop
Stack में से Information को Retrieve करना Pop कहलाता है .
Implementation Of Stack
Digital Computers में Stack को Two Techniques से Design कर सकते हैं
- Resister Stack
- Memory Stack.
0 Comments