Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python

C++


JAVA
PHP
SQL
Assignments

DLListExamples


teststuff.cpp

#include "dllist.h"
#include "stackAsAdllist.h"
#include "stackHasAdllist.h"
#include<iostream>

using namespace std;

int main() {

cout<<"Using version 1 of the stack:\n\n";
stack S;
S.Push(1);
S.Push(2);
S.Push(3);
S.Push(4);
cout<<S.Pop()<<" ";
cout<<S.Pop()<<" ";
cout<<S.Pop()<<" ";
cout<<S.Pop()<<" ";
cout<<S.Pop()<<"\n";

cout<<"Using version 2 of the stack:\n\n";
stack2 S2;
S2.Push(1);
S2.Push(2);
S2.Push(3);
S2.Push(4);
cout<<S2.Pop()<<" ";
cout<<S2.Pop()<<" ";
cout<<S2.Pop()<<" ";
cout<<S2.Pop()<<" ";
cout<<S2.Pop()<<"\n";

return 0;
}