-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.h
39 lines (32 loc) · 1.2 KB
/
common.h
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
31
32
33
34
35
36
37
38
39
/*
Modified by: Gabriel Pereyra and Stephen Brikiatis
Class: CSI-281-03
Assignment: Final Project
Date Assigned: 12/12/2015
Due Date: 11/16/2015
Description:
An implementaion for Apriori. Reads a file and finds correlations within the data
and then outputs that data to a text file. This system also times the data extraction
and is open to variable minimum thresholds.
Certification of Authenticity:
I certify that this is entirely my own work, except where I have given
fully-documented references to the work of others. I understand the
definition and consequences of plagiarism and acknowledge that the assessor
of this assignment may, for the purpose of assessing this assignment:
- Reproduce this assignment and provide a copy to another member of
academic staff; and/or
- Communicate a copy of this assignment to a plagiarism checking
service (which may then retain a copy of this assignment on its
database for the purpose of future plagiarism checking)
*/
#ifndef COMMON_H
#define COMMON_H
#include <iostream>
#include <string>
#include <fstream>
#include "LinkedList.h"
using namespace std;
//common functions
void pause();
void clearScreen();
#endif