Update Assignment

This commit is contained in:
2018-10-22 10:51:55 +07:00
parent d1e8e4feb3
commit b5216a23ef
6 changed files with 371 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
#include"UnrolledLinkedList.h"
void UnrolledLinkedList::add(int val) {
// TODO
}
int UnrolledLinkedList::getAt(int pos) {
if (pos < 0 || pos >= size)
throw "IndexOutOfBoundsException"; // check whether pos is valid or not
// TODO
}
void UnrolledLinkedList::setAt(int pos, int val) {
if (pos < 0 || pos >= size)
throw "IndexOutOfBoundsException"; // check whether pos is valid or not
// TODO
}
void UnrolledLinkedList::insertAt(int pos, int val) {
if (pos < 0 || pos > size)
throw "IndexOutOfBoundsException"; // check whether pos is valid or not
// TODO
}
void UnrolledLinkedList::deleteAt(int pos)
{
if (pos < 0 || pos >= size)
throw "IndexOutOfBoundsException"; // check whether pos is valid or not
// TODO
}
int UnrolledLinkedList::firstIndexOf(int val) {
// TODO
}
int UnrolledLinkedList::lastIndexOf(int val) {
// TODO
}
bool UnrolledLinkedList::contains(int val) {
// TODO
}
void UnrolledLinkedList::reverse() {
// TODO
}
int* UnrolledLinkedList::toArray() {
// TODO
}