-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmyBackoff.cpp
More file actions
210 lines (140 loc) · 7.62 KB
/
myBackoff.cpp
File metadata and controls
210 lines (140 loc) · 7.62 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*
** Names: Perry Stewart PS808, Daniel Dover DCD160
** Assignment: Programming Assignment 3-Investigating Backoff Protocols
** Date 11/30/18
** Class: Data Communication Networks
*/
#include <iostream>
#include <fstream>
#include <math.h>
#include <bits/stdc++.h>
using namespace std;
int main() {
//creates and opens linearLatency file to write averages to
ofstream linearLatency;
linearLatency.open("linearLatency.txt");
//loop for number of devices starting at 100 and incriimenting by 100 to 6000
for(int number_of_devices = 100; number_of_devices <= 6000; number_of_devices += 100) {
int avg_latency = 0; //initializes the the average latency variable
//loop to test the backoff 10 times
for(int trial = 0; trial < 10; trial++) {
int devices = number_of_devices; //number of devices per trial that will becrimented
int windows_size = 2; //initializes the window size
int latency = 0; //initializes the latency variable for each trial
//loop for iterating through the backoff until all devices have succeeded
while (devices > 0) {
int Device_Choices[windows_size]; //creates an array to store number of devices selecting a slot
memset(Device_Choices, 0, sizeof(Device_Choices)); //initializes all variables in the array to 0
//generates a random number for each device that has not successfully sent and incriments that array index
for(int i = 0; i < devices; i++){
int random_var = rand()%windows_size; //generates a random number based on the window size
Device_Choices[random_var] = Device_Choices[random_var] + 1; //incriments the slot based upon the random variable selected
}
//loop to check if any devices successfully sent
for (int i = 0; i < windows_size; i++){
//checks if only 1 device is in a given slot
if (Device_Choices[i] == 1){
devices--; //decreases the number of devices to still send
//if no devices are left the latency of the run is the slot of the last device to send plus all other windows
if (devices == 0){
latency += i; //increases the latency
}
}
}
//if devices are still left to send increase the latency by the current windo size
if (devices > 0) {
latency += windows_size; //increases the latency
}
windows_size++; //increases the window size by 1
}
avg_latency += latency; //adds the current trial latency to the average latency variable
}
linearLatency << avg_latency/10 << "\n"; //adds the average latency of 10 trials per number of devices to a file
}
linearLatency.close(); //closes the text file
//creates and opens binaryLatency file to write averages to
ofstream binaryLatency;
binaryLatency.open("binaryLatency.txt");
//loop for number of devices starting at 100 and incriimenting by 100 to 6000
for(int number_of_devices = 100; number_of_devices <= 6000; number_of_devices += 100) {
int avg_latency = 0; //initializes the the average latency variable
//loop to test the backoff 10 times
for(int trial = 0; trial < 10; trial++) {
int devices = number_of_devices; //number of devices per trial that will becrimented
int windows_size = 2; //initializes the window size
int latency = 0; //initializes the latency variable for each trial
//loop for iterating through the backoff until all devices have succeeded
while (devices > 0) {
int Device_Choices[windows_size]; //creates an array to store number of devices selecting a slot
memset(Device_Choices, 0, sizeof(Device_Choices)); //initializes all variables in the array to 0
//generates a random number for each device that has not successfully sent and incriments that array index
for(int i = 0; i < devices; i++){
int random_var = rand()%windows_size; //generates a random number based on the window size
Device_Choices[random_var] = Device_Choices[random_var] + 1; //incriments the slot based upon the random variable selected
}
//loop to check if any devices successfully sent
for (int i = 0; i < windows_size; i++){
//checks if only 1 device is in a given slot
if (Device_Choices[i] == 1){
devices--; //decreases the number of devices to still send
//if no devices are left the latency of the run is the slot of the last device to send plus all other windows
if (devices == 0){
latency += i; //increases the latency
}
}
}
//if devices are still left to send increase the latency by the current windo size
if (devices > 0) {
latency += windows_size; //increases the latency
}
windows_size *= 2; //incriments the window size according to the specifications of binary backoff
}
avg_latency += latency; //adds the current trial latency to the average latency variable
}
binaryLatency << avg_latency/10 << "\n"; //adds the average latency of 10 trials per number of devices to a file
}
binaryLatency.close(); //closes the text file
//creates and opens logLatency file to write averages to
ofstream logLatency;
logLatency.open("logLatency.txt");
//loop for number of devices starting at 100 and incriimenting by 100 to 6000
for(int number_of_devices = 100; number_of_devices <= 6000; number_of_devices += 100) {
int avg_latency = 0; //initializes the the average latency variable
//loop to test the backoff 10 times
for(int trial = 0; trial < 10; trial++) {
int devices = number_of_devices; //number of devices per trial that will becrimented
int windows_size = 2; //initializes the window size
int latency = 0; //initializes the latency variable for each trial
//loop for iterating through the backoff until all devices have succeeded
while (devices > 0) {
int Device_Choices[windows_size]; //creates an array to store number of devices selecting a slot
memset(Device_Choices, 0, sizeof(Device_Choices)); //initializes all variables in the array to 0
//generates a random number for each device that has not successfully sent and incriments that array index
for(int i = 0; i < devices; i++){
int random_var = rand()%windows_size; //generates a random number based on the window size
Device_Choices[random_var] = Device_Choices[random_var] + 1; //incriments the slot based upon the random variable selected
}
//loop to check if any devices successfully sent
for (int i = 0; i < windows_size; i++){
//checks if only 1 device is in a given slot
if (Device_Choices[i] == 1){
devices--; //decreases the number of devices to still send
//if no devices are left the latency of the run is the slot of the last device to send plus all other windows
if (devices == 0){
latency += i; //increases the latency
}
}
}
//if devices are still left to send increase the latency by the current windo size
if (devices > 0) {
latency += windows_size; //increases the latency
}
windows_size = (1 + (1 / log2(windows_size))) * windows_size; //incriments the window size according to the specifications of logarithmic backoff
}
avg_latency += latency; //adds the current trial latency to the average latency variable
}
logLatency << avg_latency/10 << "\n"; //adds the average latency of 10 trials per number of devices to a file
}
logLatency.close(); //closes the text file
return 0;
}