Skip to content

Commit

Permalink
Git init.
Browse files Browse the repository at this point in the history
  • Loading branch information
xehivs committed Mar 30, 2016
0 parents commit 9a73f28
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
lab3
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
all:
g++ *.cpp -o lab3
./lab3
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#Lab 3 - Kontenery
19 changes: 19 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Kontenery sekwencyjne
#include <vector> // Łańcuch
// Adaptery
#include <stack> // Stos
#include <queue> // Kolejka
// Kontenery asocjujące
#include <map> // Słownik
#include <set> // Zbiór

#include <stdio.h>
#include <stdlib.h>

using namespace std;

int main(int argc, char const *argv[])
{
/* code */
return 0;
}

0 comments on commit 9a73f28

Please sign in to comment.