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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <stdlib.h>
#include <iomanip>
#include <sstream>
#include <stdio.h>
#include <windows.h>
#include <cstddef>
#include <string.h>
using namespace std;
const int buff_size = 81; // buffer size of 81 characters
ifstream input_File;
ifstream delete_File;
int i = 0;
char *buffer = new char[buff_size], // Tokenizing pointers
*tokens[3],
*ptr,
*placeHolder;
string firstN; // Global variables
string lastN;
string ages;
int pause;
//-----------------------------------------------------------------------------
struct listNode // Structure named listNode
{
string age; // Values within nodes
string firstName;
string lastName;
listNode* next;
};
listNode* newNode; // Node pointers
listNode* head;
listNode* current;
//-----------------------------------------------------------------------------
void initializeList() // sets pointers
{
listNode* head = NULL;
listNode* current = head;
}
//-----------------------------------------------------------------------------
void reportDuplicate() // prints duplicates
{
cout << "Duplicate Record: " << newNode-> lastName << endl;
}
//-----------------------------------------------------------------------------
void incompleteRecord()
{
cout << "Record incomplete: " << tokens[0] << endl;
}// end void incompleteRecord()
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
void insertName(string lastN)
{
// Initializes list on insertion
// Creates new node and inserts tokenized values
newNode = new listNode;
newNode-> lastName = lastN;
newNode-> next = NULL;
listNode* current = head; // set traversal pointer
if(head == NULL) // If no head node, create one
{
head = newNode;
newNode-> next = NULL;
}
else if(head-> lastName > newNode-> lastName)
{
newNode-> next = head;
head = newNode;
}
else
{
while((current-> next != NULL) && (current-> next-> lastName < newNode-> lastName)) // Traverse the list
{
if(current-> lastName == newNode-> lastName)
{
reportDuplicate();
}
else
{
current = current-> next;
}
}
if(current-> lastName < newNode-> lastName)
{
newNode-> next = current-> next;
current-> next = newNode;
}
}//end if(lastName)
}//end void insertName(...)
//-----------------------------------------------------------------------------
void tokenizingFunction()
{
while(input_File.getline(buffer, buff_size))
{
// If we found a blank line (newline char in column 1), ignore it and
// continue.
if(strlen(buffer) == 0)
continue;
// Break the input string into white space separated tokens.
// 3rd parameter needs to be a char**_Context
// Use char* (placeHolder) as a place holder within the string (used in strtok_s)
ptr = (char *)strtok_s(buffer, " ", &placeHolder); // Remember to change this for Mac
// If ptr == NULL, then other than whitespace, the input line is
// empty.
if(!ptr)
continue;
// Store the tokens in tokens[]
i = 0;
tokens[i] = (char *)_strdup(ptr);
do
{
ptr = (char *)strtok_s('\0', " ", &placeHolder); // Remember to change this for Mac
if(ptr)
{
tokens[++i] = (char *)_strdup(ptr);
}
}
while(ptr);
lastN = tokens[0]; // string lastN
firstN = tokens[1]; // string firstN
ages = tokens[2]; // string ages
if(buffer && tokens[2]) // Not a blank line, and token[2] has token
{
insertName(lastN); // Insert
}
}
delete(buffer);
} // end void tokenizingFunction()
//-----------------------------------------------------------------------------
// Possible node activity //
// newNode-> lastName; -value of lastName
// newNode-> firstName; -value of firstName
// newNode-> age; -value of age
// newNode-> next; -pointer to next node
//-----------------------------------------------------------------------------
void displayList()
{
cout << "\nDisplaying List" << endl << endl;
current = head;
while(current != NULL)
{
if(current == NULL)
{
cout << "\nEnd of list!" << endl;
}
else
{
cout << current-> lastName << endl;
current = current-> next;
}
}// end while
}// end void displayList()
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
int main()//int argc, char *argv[])
{
// Open input stream files for use without argc / argv ------ delete before turning in
input_File.open("InputNameList.txt");
// delete_File.open("deleteThese.in");
/*if(argc != 3) // Usage statement of how to use program via command line
{
cout << "\nUsage: " << argv[0] << " 'Input File Name 1'" << " 'Input File Name 2'\n" << endl;
return(0);
}
//--------------------------- ifstreams
ifstream input_File(argv[1], ios::in); // Open first input file to read from
if(input_File.is_open())
{
cout << "\nInput File is open..." << endl;
}
else
{
cout << "\nInput File did NOT open..." << endl;
return (1);
}
ifstream delete_File(argv[2], ios::in); // Open second input file to delete from
if(delete_File.is_open())
{
cout << "\nDelete File is open..." << endl;
}
else
{
cout << "\nDelete File is NOT open..." << endl;
return (1);
}*/
//-----------------------------------------------------------------------------
// Functions
initializeList(); // Initializes head, current, and prev_Ptr
if(input_File.is_open())
{
while(input_File.good())
{
while(!input_File.eof())
{
tokenizingFunction(); // tokenizes and inserts into list
}
}
}
else
{
cout << "Input File is NOT Open!" << endl << endl;
system("pause");
return (1);
}
displayList();
//-----------------------------------------------------------------------------
cin >> pause; // Non Windows Pause similar to (system("pause");)
return 0;
}
|