Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 2005 > C# 2005
|
C# 2005 For discussion of Visual C# 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 28th, 2007, 06:34 AM
Authorized User
 
Join Date: Apr 2007
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
Default Implementing a Stack

Ok I have a basic data structure as queue and it expose two methods –
add and remove , I have to implement a stack, how can we do that ?

Thanks.

 
Old October 28th, 2007, 06:44 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Take a look at the built-in Stack<T>, http://msdn2.microsoft.com/en-us/library/3278tedw.aspx. You can always examine the source code for ideas using Reflector. A simple implementation would be a List or an Array that new articles are added to the end and retrieval fetches the last item.

--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
How to visualize a stack on a form? soundchaser59 ASP.NET 1.0 and 1.1 Basics 0 July 12th, 2007 08:25 PM
Stack segment fuehrer C++ Programming 1 April 29th, 2005 01:59 AM
Structure / Stack Question BrianWren Pro VB.NET 2002/2003 1 December 30th, 2004 07:07 PM
Stack question BrianWren VB.NET 2002/2003 Basics 1 December 30th, 2004 07:06 PM
C++ Stack? Spivonious C++ Programming 6 October 11th, 2004 03:56 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.