
org.sonarsource.analyzer.commons.collections.TreeIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-analyzer-commons Show documentation
Show all versions of sonar-analyzer-commons Show documentation
Logic useful for a language plugin
The newest version!
/*
* SonarSource Analyzers Commons
* Copyright (C) 2009-2025 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
package org.sonarsource.analyzer.commons.collections;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Iterator;
import java.util.NoSuchElementException;
class TreeIterator implements Iterator> {
private final Deque> stack = new ArrayDeque<>();
private AVLTree current;
private AVLTree inBucket;
TreeIterator(AVLTree root) {
current = root;
inBucket = null;
}
@Override
public boolean hasNext() {
return !stack.isEmpty() || !current.isEmpty() || inBucket != null;
}
@SuppressWarnings("unchecked")
public AVLTree next() {
if (!hasNext()) {
throw new NoSuchElementException();
}
if (inBucket != null) {
var previous = inBucket;
inBucket = inBucket.nextInBucket();
return previous;
}
while (!current.isEmpty()) {
stack.push(current);
current = current.left();
}
current = stack.pop();
AVLTree node = current;
current = current.right();
inBucket = node.nextInBucket();
return node;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy