Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement C++ stack and queue

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to implement C++ stack and queue". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "how to implement C++ stack and queue".

Definition and implementation of stack

# ifndef Stack_H # define Stack_H # include "List.h" template class Stack: List// stack class definition {public: void Push (Type value) {Insert (value);} Type Pop () {Type p = * GetNext (); RemoveAfter (); return p;} Type GetTop () {return * GetNext ();} List:: MakeEmpty; List:: IsEmpty;}; # endif

Definition and implementation of queues

# ifndef Queue_H # define Queue_H # include "List.h" template class Queue: List// queue definition {public: void EnQueue (const Type & value) {LastInsert (value);} Type DeQueue () {Type p = * GetNext (); RemoveAfter (); IsEmpty (); return p;} Type GetFront () {return * GetNext ();} List: MakeEmpty; List:: IsEmpty;} # endif

Test program

# ifndef StackTest_H # define StackTest_H # include "Stack.h" void StackTest_int () {cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report