mirror of
https://github.com/tiennm99/CTDL-GT.git
synced 2026-08-10 10:21:44 +00:00
@@ -1,61 +0,0 @@
|
||||
#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
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user