-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedlist.cpp
56 lines (44 loc) · 1.16 KB
/
linkedlist.cpp
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
#include<stdio.h>
#include<iostream>
#include<string>
#include "linkedlist.h"
//implemenation phase
//constructor
Linkedlist::Linkedlist(){
head = NULL;
}
Node* Linkedlist::createNode(std::string key, std::string value){
//allocate memory in heap
Node* temp = new Node();
temp->key = key;
temp->value = value;
temp->next = NULL;
return temp;
}
void Linkedlist::insertAtLast(std::string key, std::string value){
Node* newNode = createNode(key,value);
//pointer to pointer to deal with head as global
Node** headRef = &head;
//a temp pointer to head - *headRef : value at the address contained in headref is head address
Node* current = *headRef;
//empty list
if (current == NULL){
*headRef = newNode;
return;
}
//go to last node
while(current->next != NULL){
current = current ->next;
}
current->next = newNode;
}
void Linkedlist::print(){
Node* temp = head;
//empty case
if(temp == NULL) return;
while(temp != NULL){
std::cout<<temp->key<<":"<<temp->value<<" ";
temp = temp->next;
}
printf("\n");
}