Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hello #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
install: make get-deps
language: cpp
script: scons
compiler:
- g++
8 changes: 8 additions & 0 deletions Hello-World.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <iostream>
using namespace std;

int main()
{
cout << "Hello-World" << endl;
return 0;
}
Empty file added Queue/Queue.cpp
Empty file.
17 changes: 17 additions & 0 deletions Queue/Queue.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
class Queue
{
public:
Queue(int capacity);
virtual ~Queue();
bool empty();
bool full();
void EnQueue(int &element);
int &DeQueue();
void printQueue();
private:
int *m_iElement;
int m_iCapacity;
int m_iLen;
int m_iHead;
int m_iTail;
};