aboutsummaryrefslogtreecommitdiff
path: root/Project1/helper.h
blob: 8813e4d3306415b27ff7c9bb64d5bca3b2158846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef HELPER
#define HELPER

#include <iostream>
#include <array>
#include <vector>
#include <list>

using std::array;
using std::vector;

constexpr int SIZE = 12000;

void Print(int(&cArray)[SIZE]);

void Print(const std::array<int, SIZE> &stdArray);

void Print(const std::vector<int>& myVector);

void Print(const std::list<int>& myList);

void Fibonacci(int(&cArray)[SIZE]);

void Fibonacci(std::array<int, SIZE>& stdArray);

void Fibonacci(std::vector<int>& myVector);

void Fibonacci(std::list<int>& myList);

#endif HELPER