Exemple #1
0
 ~TrieNode() {
     if(ChildCount == 0) return;
     else if(ChildCount > MAX_LIST_ELEMENTS) {
         DeallocateArray();
     }
     else DeallocateList(ChildrenListHead, true);
 }
Exemple #2
0
    void DeallocateList(TrieList* node, bool deallocateNodes) {
        if(node->Next) {
            DeallocateList(node->Next, deallocateNodes);
        }

        if(deallocateNodes) {
            delete node->Node;
        }

        delete node;
    }
Exemple #3
0
    void ConvertListToArray() {
        assert(ChildrenListHead != nullptr);

        TrieNode** array = AllocateArray();
        TrieList* listNode = ChildrenListHead;

        while(listNode) {
            array[listNode->Value] = listNode->Node;
            listNode = listNode->Next;
        }

        DeallocateList(ChildrenListHead, false);
        ChildrenArray = array;
    }
void CDerivedDisplaySettingsListView::SetAllItems( void )
{
DeallocateList();
AllocateList();
SetList();
};