Caminhe da esquerda para a direita, usando uma pilha para acompanhar a cor em que está. Em vez de um mapa discreto, use os 10 números no seu conjunto de dados como pontos de interrupção.
Começando com uma pilha vazia e configurando start
como 0, faça um loop até chegarmos ao fim:
- Se a pilha estiver vazia:
- Procure a primeira cor começando em ou depois
start
e empurre-a e todas as cores de classificação mais baixa na pilha. Na sua lista nivelada, marque o início dessa cor.
- else (se não estiver vazio):
- Encontre o próximo ponto de partida para qualquer cor de classificação mais alta em ou após
start
e encontre o final da cor atual
- Se a próxima cor começar primeiro, empurre-a e qualquer outra coisa a caminho da pilha. Atualize o final da cor atual como o início desta e adicione o início dessa cor à lista nivelada.
- Se não houver nenhuma, e a cor atual terminar primeiro, defina
start
o final dessa cor, retire-a da pilha e verifique a próxima cor com a classificação mais alta
- Se
start
estiver dentro do intervalo da próxima cor, adicione-a à lista nivelada, começando em start
.
- Se a pilha esvaziar, continue o loop (volte para o primeiro marcador).
Este é um detalhamento mental, considerando seus dados de exemplo:
# Initial data.
flattened = []
stack = []
start = 0
# Stack is empty. Look for the next starting point at 0 or later: "b", 0 - Push it and all lower levels onto stack
flattened = [ (b, 0, ?) ]
stack = [ r, b ]
start = 0
# End of "b" is 5.4, next higher-colored start is "g" at 2 - Delimit and continue
flattened = [ (b, 0, 2), (g, 2, ?) ]
stack = [ r, b, g ]
start = 2
# End of "g" is 12, next higher-colored start is "y" at 3.5 - Delimit and continue
flattened = [ (b, 0, 2), (g, 2, 3.5), (y, 3.5, ?) ]
stack = [ r, b, g, y ]
start = 3.5
# End of "y" is 6.7, next higher-colored start is "o" at 6.7 - Delimit and continue
flattened = [ (b, 0, 2), (g, 2, 3.5), (y, 3.5, 6.7), (o, 6.7, ?) ]
stack = [ r, b, g, y, o ]
start = 6.7
# End of "o" is 10, and there is nothing starting at 12 or later in a higher color. Next off stack, "y", has already ended. Next off stack, "g", has not ended. Delimit and continue.
flattened = [ (b, 0, 2), (g, 2, 3.5), (y, 3.5, 6.7), (o, 6.7, 10), (g, 10, ?) ]
stack = [ r, b, g ]
start = 10
# End of "g" is 12, there is nothing starting at 12 or later in a higher color. Next off stack, "b", is out of range (already ended). Next off stack, "r", is out of range (not started). Mark end of current color:
flattened = [ (b, 0, 2), (g, 2, 3.5), (y, 3.5, 6.7), (o, 6.7, 10), (g, 10, 12) ]
stack = []
start = 12
# Stack is empty. Look for the next starting point at 12 or later: "r", 12.5 - Push onto stack
flattened = [ (b, 0, 2), (g, 2, 3.5), (y, 3.5, 6.7), (o, 6.7, 10), (g, 10, 12), (r, 12.5, ?) ]
stack = [ r ]
start = 12
# End of "r" is 13.8, and there is nothing starting at 12 or higher in a higher color. Mark end and pop off stack.
flattened = [ (b, 0, 2), (g, 2, 3.5), (y, 3.5, 6.7), (o, 6.7, 10), (g, 10, 12), (r, 12.5, 13.8) ]
stack = []
start = 13.8
# Stack is empty and nothing is past 13.8 - We're done.