代码搜索:Delete
找到约 10,000 项符合「Delete」的源代码
代码结果 10,000
www.eeworm.com/read/375793/9349454
h lstack.h
// file lstack.h
// linked stack
#ifndef LinkedStack_
#define LinkedStack_
#include "node.h"
#include "xcept.h"
template
class LinkedStack {
public:
LinkedStack() {top =
www.eeworm.com/read/372507/9507104
cpp queue.cpp
// test formula based queue class
#include
#include "queue.h"
void main(void)
{
Queue Q(3);
int x;
try {Q.Add(1).Add(2).Add(3).Add(4);
cout
www.eeworm.com/read/372507/9507110
cpp lqueue.cpp
// test linked queue class
#include
#include "lqueue.h"
void main(void)
{
LinkedQueue Q;
int x;
try {Q.Add(1).Add(2).Add(3).Add(4);
cout
www.eeworm.com/read/372507/9507132
h lstack.h
// file lstack.h
// linked stack
#ifndef LinkedStack_
#define LinkedStack_
#include "node.h"
#include "xcept.h"
template
class LinkedStack {
public:
LinkedStack() {top =
www.eeworm.com/read/168218/9932399
cpp queue.cpp
// test formula based queue class
#include
#include "queue.h"
void main(void)
{
Queue Q(3);
int x;
try {Q.Add(1).Add(2).Add(3).Add(4);
cout
www.eeworm.com/read/168218/9932507
h lstack.h
// file lstack.h
// linked stack
#ifndef LinkedStack_
#define LinkedStack_
#include "node.h"
#include "xcept.h"
template
class LinkedStack {
public:
LinkedStack() {top =