Merge work from lubuntu

This commit is contained in:
Shaun Reed 2020-04-20 13:22:26 +00:00
commit 00259b25a1
3 changed files with 33 additions and 19 deletions

View File

@ -23,17 +23,15 @@ int main()
bool exit = false; bool exit = false;
int choice = -1; int choice = -1;
int val, key; int val, key;
SingleList test2;
while (!exit) while (!exit)
{ {
test2 = testList;
std::cout << "##### Singly Linked List Menu #####\n\t0. Exit" std::cout << "##### Singly Linked List Menu #####\n\t0. Exit"
<< "\n\t1. Insert\n\t2. Insert at\n\t3. Empty list\n\t4. Peek top of list" << "\n\t1. Insert\n\t2. Insert at\n\t3. Empty list\n\t4. Peek top of list"
<< "\n\t5. Print list\n\t6. Find\n\t7. Remove\n\t8. Replace\n"; << "\n\t5. Print list\n\t6. Find\n\t7. Remove\n\t8. Replace\n";
std::cin >> choice; std::cin >> choice;
std::cin.clear(); std::cin.clear();
switch (choice) switch (choice) {
{
case EXIT: case EXIT:
exit = true; exit = true;
break; break;
@ -69,8 +67,6 @@ int main()
case PRINT: case PRINT:
testList.print(); testList.print();
test2.print();
// test3.print();
break; break;
case FIND: case FIND:

View File

@ -19,21 +19,34 @@
* *
* @param rhs SingleList object * @param rhs SingleList object
*/ */
SingleList::SingleList(const SingleList& rhs) : head (rhs.head) SingleList::SingleList(const SingleList& rhs)
{ {
Node *cp = rhs.head;
Node *tempHead;
if (cp == NULL) head = NULL;
else {
head = new Node(cp->data);
tempHead = head;
while (cp->next != NULL) {
cp = cp->next;
head->next = new Node(cp->data);
head = head->next;
}
head = tempHead;
}
} }
/** /**
* @brief Copy the rhs SingleList::SingleList into the lhs of an assignemnt * @brief Shallow copy of the rhs into the lhs of the assignemnt
* *
* @param rhs SingleList object * @param rhs SingleList object
* @return SingleList& The copied rhs SingleList to the lhs of the assignment * @return SingleList& A shallow copy of the rhs SingleList in the assignment
*/ */
SingleList SingleList::operator=(SingleList rhs) SingleList SingleList::operator=(SingleList& rhs)
{ {
if (this == &rhs) return *this; if (this == &rhs) return *this;
std::swap(head, rhs.head); else head = rhs.head;
// head = rhs.head;
return *this; return *this;
} }
@ -117,10 +130,15 @@ bool SingleList::replace(int val, int key)
*/ */
void SingleList::makeEmpty() void SingleList::makeEmpty()
{ {
Node *temp(head); Node *nextNode = head->next;
while(!isEmpty()) { Node *temp;
head = head->next; delete head;
head = NULL;
while(nextNode != NULL) {
temp = nextNode;
nextNode = nextNode->next;
delete temp; delete temp;
temp = NULL;
} }
} }

View File

@ -6,11 +6,11 @@
## Structure: Remove: Insert: Insert at: Replace: ## ## Structure: Remove: Insert: Insert at: Replace: ##
## o-o-o-o-o-o o-o--x-->o-o-o o o o ## ## o-o-o-o-o-o o-o--x-->o-o-o o o o ##
## | /| / \ ## ## | /| / \ ##
## o-o~o-o-o-o o-o~o-o-o-o o-o~x~o-o-o ## ## o-o-o-o-o-o o-o~o-o-o-o o-o~x~o-o-o ##
## ## ## ##
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ## ## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
############################################################################## ##############################################################################
## singlelist.cpp ## singlelist.h
*/ */
#ifndef LINKEDLIST_H #ifndef LINKEDLIST_H
@ -22,7 +22,7 @@ class SingleList{
public: public:
SingleList() : head(NULL) {}; SingleList() : head(NULL) {};
SingleList(const SingleList& rhs); SingleList(const SingleList& rhs);
SingleList operator=(SingleList rhs); SingleList operator=(SingleList& rhs);
~SingleList(); ~SingleList();
bool insert(int val); bool insert(int val);
bool insert(int val, int key); bool insert(int val, int key);
@ -38,7 +38,7 @@ class SingleList{
struct Node { struct Node {
int data; int data;
Node *next; Node *next;
Node(): data(00), next(NULL) {}; Node(): data(), next(NULL) {};
Node(int val): data(val), next(NULL) {}; Node(int val): data(val), next(NULL) {};
}; };
Node *head; Node *head;