I am reading about a "trick" (references to Aho,Hopcroft,Ullman) on how to use a data vector without explicitely initializing it.
The trick is to use 2 extra vectors (From To) and an integer Top.
Before accesing an element in the vector DATA[i] if a specific condition between From To and Top is met the element i has been considered as initialized.
If the condition does not meet then the element is initialized and the From To and Top are updated as follows:
Top = Top + 1
From[i] = Top
To[Top] = i
Data[i] = 0
The condition is to know whether an element has been initialized is:
From[i] <= Top && To[From[i]] == i
If true then it has been initialized.
My question is: why are the extra vectors needed?
From my point of view, if I access an element and i<=Top then the element is initialized. Then I increment i i.e. i++.
In this case if i <= TOP means that DATA[i] has been initialized.
Am I not seeing a boundary case? It seems to me this is enough.
Or am I wrong?
From,ToandTopare updated. – Oli Charlesworth Nov 19 '11 at 20:53From,ToandTop.I read this from a part ofProgramming Pearlsthat mentions it is fromAho etc– user384706 Nov 19 '11 at 20:59