package com.google.common.collect; import com.google.common.base.MoreObjects; import com.google.common.base.Preconditions; import com.google.common.collect.Multiset; import com.google.common.collect.Multisets; import com.google.common.collect.Serialization; import com.google.common.primitives.Ints; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import java.util.Comparator; import java.util.ConcurrentModificationException; import java.util.Iterator; import java.util.NavigableSet; import java.util.NoSuchElementException; import java.util.Set; /* loaded from: classes2.dex */ public final class TreeMultiset extends AbstractSortedMultiset implements Serializable { private static final long serialVersionUID = 1; private final transient AvlNode header; private final transient GeneralRange range; private final transient Reference> rootReference; /* JADX INFO: Access modifiers changed from: package-private */ /* loaded from: classes2.dex */ public enum Aggregate { SIZE { // from class: com.google.common.collect.TreeMultiset.Aggregate.1 @Override // com.google.common.collect.TreeMultiset.Aggregate final int nodeAggregate(AvlNode avlNode) { return ((AvlNode) avlNode).elemCount; } @Override // com.google.common.collect.TreeMultiset.Aggregate final long treeAggregate(AvlNode avlNode) { if (avlNode == null) { return 0L; } return ((AvlNode) avlNode).totalCount; } }, DISTINCT { // from class: com.google.common.collect.TreeMultiset.Aggregate.2 @Override // com.google.common.collect.TreeMultiset.Aggregate final int nodeAggregate(AvlNode avlNode) { return 1; } @Override // com.google.common.collect.TreeMultiset.Aggregate final long treeAggregate(AvlNode avlNode) { if (avlNode == null) { return 0L; } return ((AvlNode) avlNode).distinctElements; } }; abstract int nodeAggregate(AvlNode avlNode); abstract long treeAggregate(AvlNode avlNode); } @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.SortedMultiset, com.google.common.collect.SortedIterable public final /* bridge */ /* synthetic */ Comparator comparator() { return super.comparator(); } @Override // com.google.common.collect.AbstractMultiset, java.util.AbstractCollection, java.util.Collection, com.google.common.collect.Multiset public final /* bridge */ /* synthetic */ boolean contains(Object obj) { return super.contains(obj); } @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.SortedMultiset public final /* bridge */ /* synthetic */ SortedMultiset descendingMultiset() { return super.descendingMultiset(); } @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.AbstractMultiset, com.google.common.collect.Multiset public final /* bridge */ /* synthetic */ NavigableSet elementSet() { return super.elementSet(); } @Override // com.google.common.collect.AbstractMultiset, com.google.common.collect.Multiset public final /* bridge */ /* synthetic */ Set entrySet() { return super.entrySet(); } @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.SortedMultiset public final /* bridge */ /* synthetic */ Multiset.Entry firstEntry() { return super.firstEntry(); } @Override // com.google.common.collect.AbstractMultiset, java.util.AbstractCollection, java.util.Collection public final /* bridge */ /* synthetic */ boolean isEmpty() { return super.isEmpty(); } @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.SortedMultiset public final /* bridge */ /* synthetic */ Multiset.Entry lastEntry() { return super.lastEntry(); } @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.SortedMultiset public final /* bridge */ /* synthetic */ Multiset.Entry pollFirstEntry() { return super.pollFirstEntry(); } @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.SortedMultiset public final /* bridge */ /* synthetic */ Multiset.Entry pollLastEntry() { return super.pollLastEntry(); } /* JADX WARN: Multi-variable type inference failed */ @Override // com.google.common.collect.AbstractSortedMultiset, com.google.common.collect.SortedMultiset public final /* bridge */ /* synthetic */ SortedMultiset subMultiset(Object obj, BoundType boundType, Object obj2, BoundType boundType2) { return super.subMultiset(obj, boundType, obj2, boundType2); } public static TreeMultiset create() { return new TreeMultiset<>(Ordering.natural()); } public static TreeMultiset create(Comparator comparator) { if (comparator == null) { return new TreeMultiset<>(Ordering.natural()); } return new TreeMultiset<>(comparator); } public static TreeMultiset create(Iterable iterable) { TreeMultiset create = create(); Iterables.addAll(create, iterable); return create; } TreeMultiset(Reference> reference, GeneralRange generalRange, AvlNode avlNode) { super(generalRange.comparator()); this.rootReference = reference; this.range = generalRange; this.header = avlNode; } TreeMultiset(Comparator comparator) { super(comparator); this.range = GeneralRange.all(comparator); AvlNode avlNode = new AvlNode<>(null, 1); this.header = avlNode; successor(avlNode, avlNode); this.rootReference = new Reference<>(); } private long aggregateForEntries(Aggregate aggregate) { AvlNode avlNode = this.rootReference.get(); long treeAggregate = aggregate.treeAggregate(avlNode); if (this.range.hasLowerBound()) { treeAggregate -= aggregateBelowRange(aggregate, avlNode); } return this.range.hasUpperBound() ? treeAggregate - aggregateAboveRange(aggregate, avlNode) : treeAggregate; } private long aggregateBelowRange(Aggregate aggregate, AvlNode avlNode) { long treeAggregate; long aggregateBelowRange; while (avlNode != null) { int compare = comparator().compare(this.range.getLowerEndpoint(), ((AvlNode) avlNode).elem); if (compare >= 0) { if (compare == 0) { int i = AnonymousClass4.$SwitchMap$com$google$common$collect$BoundType[this.range.getLowerBoundType().ordinal()]; if (i != 1) { if (i != 2) { throw new AssertionError(); } return aggregate.treeAggregate(((AvlNode) avlNode).left); } treeAggregate = aggregate.nodeAggregate(avlNode); aggregateBelowRange = aggregate.treeAggregate(((AvlNode) avlNode).left); } else { treeAggregate = aggregate.treeAggregate(((AvlNode) avlNode).left) + aggregate.nodeAggregate(avlNode); aggregateBelowRange = aggregateBelowRange(aggregate, ((AvlNode) avlNode).right); } return treeAggregate + aggregateBelowRange; } avlNode = ((AvlNode) avlNode).left; } return 0L; } /* JADX INFO: Access modifiers changed from: package-private */ /* renamed from: com.google.common.collect.TreeMultiset$4, reason: invalid class name */ /* loaded from: classes2.dex */ public static /* synthetic */ class AnonymousClass4 { static final int[] $SwitchMap$com$google$common$collect$BoundType; static { int[] iArr = new int[BoundType.values().length]; $SwitchMap$com$google$common$collect$BoundType = iArr; try { iArr[BoundType.OPEN.ordinal()] = 1; } catch (NoSuchFieldError unused) { } try { $SwitchMap$com$google$common$collect$BoundType[BoundType.CLOSED.ordinal()] = 2; } catch (NoSuchFieldError unused2) { } } } private long aggregateAboveRange(Aggregate aggregate, AvlNode avlNode) { long treeAggregate; long aggregateAboveRange; while (avlNode != null) { int compare = comparator().compare(this.range.getUpperEndpoint(), ((AvlNode) avlNode).elem); if (compare <= 0) { if (compare == 0) { int i = AnonymousClass4.$SwitchMap$com$google$common$collect$BoundType[this.range.getUpperBoundType().ordinal()]; if (i != 1) { if (i != 2) { throw new AssertionError(); } return aggregate.treeAggregate(((AvlNode) avlNode).right); } treeAggregate = aggregate.nodeAggregate(avlNode); aggregateAboveRange = aggregate.treeAggregate(((AvlNode) avlNode).right); } else { treeAggregate = aggregate.treeAggregate(((AvlNode) avlNode).right) + aggregate.nodeAggregate(avlNode); aggregateAboveRange = aggregateAboveRange(aggregate, ((AvlNode) avlNode).left); } return treeAggregate + aggregateAboveRange; } avlNode = ((AvlNode) avlNode).right; } return 0L; } @Override // java.util.AbstractCollection, java.util.Collection, com.google.common.collect.Multiset public final int size() { return Ints.saturatedCast(aggregateForEntries(Aggregate.SIZE)); } @Override // com.google.common.collect.AbstractMultiset final int distinctElements() { return Ints.saturatedCast(aggregateForEntries(Aggregate.DISTINCT)); } static int distinctElements(AvlNode avlNode) { if (avlNode == null) { return 0; } return ((AvlNode) avlNode).distinctElements; } @Override // com.google.common.collect.Multiset public final int count(Object obj) { try { AvlNode avlNode = this.rootReference.get(); if (!this.range.contains(obj) || avlNode == null) { return 0; } return avlNode.count(comparator(), obj); } catch (ClassCastException | NullPointerException unused) { return 0; } } @Override // com.google.common.collect.AbstractMultiset, com.google.common.collect.Multiset public final int add(E e, int i) { CollectPreconditions.checkNonnegative(i, "occurrences"); if (i == 0) { return count(e); } Preconditions.checkArgument(this.range.contains(e)); AvlNode avlNode = this.rootReference.get(); if (avlNode == null) { comparator().compare(e, e); AvlNode avlNode2 = new AvlNode<>(e, i); AvlNode avlNode3 = this.header; successor(avlNode3, avlNode2, avlNode3); this.rootReference.checkAndSet(avlNode, avlNode2); return 0; } int[] iArr = new int[1]; this.rootReference.checkAndSet(avlNode, avlNode.add(comparator(), e, i, iArr)); return iArr[0]; } @Override // com.google.common.collect.AbstractMultiset, com.google.common.collect.Multiset public final int remove(Object obj, int i) { CollectPreconditions.checkNonnegative(i, "occurrences"); if (i == 0) { return count(obj); } AvlNode avlNode = this.rootReference.get(); int[] iArr = new int[1]; try { if (this.range.contains(obj) && avlNode != null) { this.rootReference.checkAndSet(avlNode, avlNode.remove(comparator(), obj, i, iArr)); return iArr[0]; } } catch (ClassCastException | NullPointerException unused) { } return 0; } @Override // com.google.common.collect.AbstractMultiset, com.google.common.collect.Multiset public final int setCount(E e, int i) { CollectPreconditions.checkNonnegative(i, "count"); if (!this.range.contains(e)) { Preconditions.checkArgument(i == 0); return 0; } AvlNode avlNode = this.rootReference.get(); if (avlNode == null) { if (i > 0) { add(e, i); } return 0; } int[] iArr = new int[1]; this.rootReference.checkAndSet(avlNode, avlNode.setCount(comparator(), e, i, iArr)); return iArr[0]; } @Override // com.google.common.collect.AbstractMultiset, com.google.common.collect.Multiset public final boolean setCount(E e, int i, int i2) { CollectPreconditions.checkNonnegative(i2, "newCount"); CollectPreconditions.checkNonnegative(i, "oldCount"); Preconditions.checkArgument(this.range.contains(e)); AvlNode avlNode = this.rootReference.get(); if (avlNode != null) { int[] iArr = new int[1]; this.rootReference.checkAndSet(avlNode, avlNode.setCount(comparator(), e, i, i2, iArr)); return iArr[0] == i; } if (i != 0) { return false; } if (i2 > 0) { add(e, i2); } return true; } @Override // com.google.common.collect.AbstractMultiset, java.util.AbstractCollection, java.util.Collection public final void clear() { if (this.range.hasLowerBound() || this.range.hasUpperBound()) { Iterators.clear(entryIterator()); return; } AvlNode avlNode = ((AvlNode) this.header).succ; while (true) { AvlNode avlNode2 = this.header; if (avlNode == avlNode2) { successor(avlNode2, avlNode2); this.rootReference.clear(); return; } AvlNode avlNode3 = ((AvlNode) avlNode).succ; ((AvlNode) avlNode).elemCount = 0; ((AvlNode) avlNode).left = null; ((AvlNode) avlNode).right = null; ((AvlNode) avlNode).pred = null; ((AvlNode) avlNode).succ = null; avlNode = avlNode3; } } /* JADX INFO: Access modifiers changed from: private */ public Multiset.Entry wrapEntry(AvlNode avlNode) { return new Multisets.AbstractEntry(this, avlNode) { // from class: com.google.common.collect.TreeMultiset.1 final TreeMultiset this$0; final AvlNode val$baseEntry; { this.this$0 = this; this.val$baseEntry = avlNode; } @Override // com.google.common.collect.Multiset.Entry public E getElement() { return (E) this.val$baseEntry.getElement(); } @Override // com.google.common.collect.Multiset.Entry public int getCount() { int count = this.val$baseEntry.getCount(); return count == 0 ? this.this$0.count(getElement()) : count; } }; } /* JADX INFO: Access modifiers changed from: private */ public AvlNode firstNode() { AvlNode avlNode; if (this.rootReference.get() == null) { return null; } if (this.range.hasLowerBound()) { E lowerEndpoint = this.range.getLowerEndpoint(); avlNode = this.rootReference.get().ceiling(comparator(), lowerEndpoint); if (avlNode == null) { return null; } if (this.range.getLowerBoundType() == BoundType.OPEN && comparator().compare(lowerEndpoint, avlNode.getElement()) == 0) { avlNode = ((AvlNode) avlNode).succ; } } else { avlNode = ((AvlNode) this.header).succ; } if (avlNode == this.header || !this.range.contains(avlNode.getElement())) { return null; } return avlNode; } /* JADX INFO: Access modifiers changed from: private */ public AvlNode lastNode() { AvlNode avlNode; if (this.rootReference.get() == null) { return null; } if (this.range.hasUpperBound()) { E upperEndpoint = this.range.getUpperEndpoint(); avlNode = this.rootReference.get().floor(comparator(), upperEndpoint); if (avlNode == null) { return null; } if (this.range.getUpperBoundType() == BoundType.OPEN && comparator().compare(upperEndpoint, avlNode.getElement()) == 0) { avlNode = ((AvlNode) avlNode).pred; } } else { avlNode = ((AvlNode) this.header).pred; } if (avlNode == this.header || !this.range.contains(avlNode.getElement())) { return null; } return avlNode; } @Override // com.google.common.collect.AbstractMultiset final Iterator elementIterator() { return Multisets.elementIterator(entryIterator()); } /* JADX INFO: Access modifiers changed from: package-private */ @Override // com.google.common.collect.AbstractMultiset public final Iterator> entryIterator() { return new Iterator>(this) { // from class: com.google.common.collect.TreeMultiset.2 AvlNode current; Multiset.Entry prevEntry; final TreeMultiset this$0; { this.this$0 = this; this.current = this.firstNode(); } @Override // java.util.Iterator public boolean hasNext() { if (this.current == null) { return false; } if (!this.this$0.range.tooHigh(this.current.getElement())) { return true; } this.current = null; return false; } @Override // java.util.Iterator public Multiset.Entry next() { if (hasNext()) { Multiset.Entry wrapEntry = this.this$0.wrapEntry(this.current); this.prevEntry = wrapEntry; if (((AvlNode) this.current).succ == this.this$0.header) { this.current = null; } else { this.current = ((AvlNode) this.current).succ; } return wrapEntry; } throw new NoSuchElementException(); } @Override // java.util.Iterator public void remove() { CollectPreconditions.checkRemove(this.prevEntry != null); this.this$0.setCount(this.prevEntry.getElement(), 0); this.prevEntry = null; } }; } @Override // com.google.common.collect.AbstractSortedMultiset final Iterator> descendingEntryIterator() { return new Iterator>(this) { // from class: com.google.common.collect.TreeMultiset.3 AvlNode current; Multiset.Entry prevEntry = null; final TreeMultiset this$0; { this.this$0 = this; this.current = this.lastNode(); } @Override // java.util.Iterator public boolean hasNext() { if (this.current == null) { return false; } if (!this.this$0.range.tooLow(this.current.getElement())) { return true; } this.current = null; return false; } @Override // java.util.Iterator public Multiset.Entry next() { if (hasNext()) { Multiset.Entry wrapEntry = this.this$0.wrapEntry(this.current); this.prevEntry = wrapEntry; if (((AvlNode) this.current).pred == this.this$0.header) { this.current = null; } else { this.current = ((AvlNode) this.current).pred; } return wrapEntry; } throw new NoSuchElementException(); } @Override // java.util.Iterator public void remove() { CollectPreconditions.checkRemove(this.prevEntry != null); this.this$0.setCount(this.prevEntry.getElement(), 0); this.prevEntry = null; } }; } @Override // java.util.AbstractCollection, java.util.Collection, java.lang.Iterable, com.google.common.collect.Multiset public final Iterator iterator() { return Multisets.iteratorImpl(this); } @Override // com.google.common.collect.SortedMultiset public final SortedMultiset headMultiset(E e, BoundType boundType) { return new TreeMultiset(this.rootReference, this.range.intersect(GeneralRange.upTo(comparator(), e, boundType)), this.header); } @Override // com.google.common.collect.SortedMultiset public final SortedMultiset tailMultiset(E e, BoundType boundType) { return new TreeMultiset(this.rootReference, this.range.intersect(GeneralRange.downTo(comparator(), e, boundType)), this.header); } /* JADX INFO: Access modifiers changed from: package-private */ /* loaded from: classes2.dex */ public static final class Reference { private T value; private Reference() { } public final void checkAndSet(T t, T t2) { if (this.value != t) { throw new ConcurrentModificationException(); } this.value = t2; } public final T get() { return this.value; } final void clear() { this.value = null; } } /* JADX INFO: Access modifiers changed from: package-private */ /* loaded from: classes2.dex */ public static final class AvlNode { private int distinctElements; private final E elem; private int elemCount; private int height; private AvlNode left; private AvlNode pred; private AvlNode right; private AvlNode succ; private long totalCount; AvlNode(E e, int i) { Preconditions.checkArgument(i > 0); this.elem = e; this.elemCount = i; this.totalCount = i; this.distinctElements = 1; this.height = 1; this.left = null; this.right = null; } /* JADX WARN: Multi-variable type inference failed */ public final int count(Comparator comparator, E e) { int compare = comparator.compare(e, this.elem); if (compare < 0) { AvlNode avlNode = this.left; if (avlNode != null) { return avlNode.count(comparator, e); } return 0; } if (compare <= 0) { return this.elemCount; } AvlNode avlNode2 = this.right; if (avlNode2 == null) { return 0; } return avlNode2.count(comparator, e); } private AvlNode addRightChild(E e, int i) { AvlNode avlNode = new AvlNode<>(e, i); this.right = avlNode; TreeMultiset.successor(this, avlNode, this.succ); this.height = Math.max(2, this.height); this.distinctElements++; this.totalCount += i; return this; } private AvlNode addLeftChild(E e, int i) { AvlNode avlNode = new AvlNode<>(e, i); this.left = avlNode; TreeMultiset.successor(this.pred, avlNode, this); this.height = Math.max(2, this.height); this.distinctElements++; this.totalCount += i; return this; } /* JADX WARN: Multi-variable type inference failed */ final AvlNode add(Comparator comparator, E e, int i, int[] iArr) { int compare = comparator.compare(e, this.elem); if (compare < 0) { AvlNode avlNode = this.left; if (avlNode == null) { iArr[0] = 0; return addLeftChild(e, i); } int i2 = avlNode.height; AvlNode add = avlNode.add(comparator, e, i, iArr); this.left = add; if (iArr[0] == 0) { this.distinctElements++; } this.totalCount += i; return add.height == i2 ? this : rebalance(); } if (compare <= 0) { int i3 = this.elemCount; iArr[0] = i3; long j = i; Preconditions.checkArgument(((long) i3) + j <= 2147483647L); this.elemCount += i; this.totalCount += j; return this; } AvlNode avlNode2 = this.right; if (avlNode2 == null) { iArr[0] = 0; return addRightChild(e, i); } int i4 = avlNode2.height; AvlNode add2 = avlNode2.add(comparator, e, i, iArr); this.right = add2; if (iArr[0] == 0) { this.distinctElements++; } this.totalCount += i; return add2.height == i4 ? this : rebalance(); } /* JADX WARN: Multi-variable type inference failed */ final AvlNode remove(Comparator comparator, E e, int i, int[] iArr) { int compare = comparator.compare(e, this.elem); if (compare < 0) { AvlNode avlNode = this.left; if (avlNode == null) { iArr[0] = 0; return this; } this.left = avlNode.remove(comparator, e, i, iArr); int i2 = iArr[0]; if (i2 > 0) { if (i >= i2) { this.distinctElements--; this.totalCount -= i2; } else { this.totalCount -= i; } } return i2 == 0 ? this : rebalance(); } if (compare <= 0) { int i3 = this.elemCount; iArr[0] = i3; if (i >= i3) { return deleteMe(); } this.elemCount = i3 - i; this.totalCount -= i; return this; } AvlNode avlNode2 = this.right; if (avlNode2 == null) { iArr[0] = 0; return this; } this.right = avlNode2.remove(comparator, e, i, iArr); int i4 = iArr[0]; if (i4 > 0) { if (i >= i4) { this.distinctElements--; this.totalCount -= i4; } else { this.totalCount -= i; } } return rebalance(); } /* JADX WARN: Multi-variable type inference failed */ final AvlNode setCount(Comparator comparator, E e, int i, int[] iArr) { int compare = comparator.compare(e, this.elem); if (compare < 0) { AvlNode avlNode = this.left; if (avlNode == null) { iArr[0] = 0; return i > 0 ? addLeftChild(e, i) : this; } this.left = avlNode.setCount(comparator, e, i, iArr); if (i == 0 && iArr[0] != 0) { this.distinctElements--; } else if (i > 0 && iArr[0] == 0) { this.distinctElements++; } this.totalCount += i - iArr[0]; return rebalance(); } if (compare <= 0) { iArr[0] = this.elemCount; if (i == 0) { return deleteMe(); } this.totalCount += i - r3; this.elemCount = i; return this; } AvlNode avlNode2 = this.right; if (avlNode2 == null) { iArr[0] = 0; return i > 0 ? addRightChild(e, i) : this; } this.right = avlNode2.setCount(comparator, e, i, iArr); if (i == 0 && iArr[0] != 0) { this.distinctElements--; } else if (i > 0 && iArr[0] == 0) { this.distinctElements++; } this.totalCount += i - iArr[0]; return rebalance(); } /* JADX WARN: Multi-variable type inference failed */ final AvlNode setCount(Comparator comparator, E e, int i, int i2, int[] iArr) { int i3; int i4; int compare = comparator.compare(e, this.elem); if (compare < 0) { AvlNode avlNode = this.left; if (avlNode == null) { iArr[0] = 0; return (i != 0 || i2 <= 0) ? this : addLeftChild(e, i2); } this.left = avlNode.setCount(comparator, e, i, i2, iArr); int i5 = iArr[0]; if (i5 == i) { if (i2 != 0 || i5 == 0) { if (i2 > 0 && i5 == 0) { i4 = this.distinctElements + 1; } this.totalCount += i2 - i5; } else { i4 = this.distinctElements - 1; } this.distinctElements = i4; this.totalCount += i2 - i5; } return rebalance(); } if (compare <= 0) { int i6 = this.elemCount; iArr[0] = i6; if (i == i6) { if (i2 == 0) { return deleteMe(); } this.totalCount += i2 - i6; this.elemCount = i2; } return this; } AvlNode avlNode2 = this.right; if (avlNode2 == null) { iArr[0] = 0; return (i != 0 || i2 <= 0) ? this : addRightChild(e, i2); } this.right = avlNode2.setCount(comparator, e, i, i2, iArr); int i7 = iArr[0]; if (i7 == i) { if (i2 != 0 || i7 == 0) { if (i2 > 0 && i7 == 0) { i3 = this.distinctElements + 1; } this.totalCount += i2 - i7; } else { i3 = this.distinctElements - 1; } this.distinctElements = i3; this.totalCount += i2 - i7; } return rebalance(); } private AvlNode deleteMe() { int i = this.elemCount; this.elemCount = 0; TreeMultiset.successor(this.pred, this.succ); AvlNode avlNode = this.left; if (avlNode == null) { return this.right; } AvlNode avlNode2 = this.right; if (avlNode2 == null) { return avlNode; } if (avlNode.height >= avlNode2.height) { AvlNode avlNode3 = this.pred; avlNode3.left = avlNode.removeMax(avlNode3); avlNode3.right = this.right; avlNode3.distinctElements = this.distinctElements - 1; avlNode3.totalCount = this.totalCount - i; return avlNode3.rebalance(); } AvlNode avlNode4 = this.succ; avlNode4.right = avlNode2.removeMin(avlNode4); avlNode4.left = this.left; avlNode4.distinctElements = this.distinctElements - 1; avlNode4.totalCount = this.totalCount - i; return avlNode4.rebalance(); } private AvlNode removeMin(AvlNode avlNode) { AvlNode avlNode2 = this.left; if (avlNode2 == null) { return this.right; } this.left = avlNode2.removeMin(avlNode); this.distinctElements--; this.totalCount -= avlNode.elemCount; return rebalance(); } private AvlNode removeMax(AvlNode avlNode) { AvlNode avlNode2 = this.right; if (avlNode2 == null) { return this.left; } this.right = avlNode2.removeMax(avlNode); this.distinctElements--; this.totalCount -= avlNode.elemCount; return rebalance(); } private void recomputeMultiset() { this.distinctElements = TreeMultiset.distinctElements(this.left) + 1 + TreeMultiset.distinctElements(this.right); this.totalCount = this.elemCount + totalCount(this.left) + totalCount(this.right); } private void recomputeHeight() { this.height = Math.max(height(this.left), height(this.right)) + 1; } private void recompute() { recomputeMultiset(); recomputeHeight(); } private AvlNode rebalance() { int balanceFactor = balanceFactor(); if (balanceFactor == -2) { if (this.right.balanceFactor() > 0) { this.right = this.right.rotateRight(); } return rotateLeft(); } if (balanceFactor == 2) { if (this.left.balanceFactor() < 0) { this.left = this.left.rotateLeft(); } return rotateRight(); } recomputeHeight(); return this; } private int balanceFactor() { return height(this.left) - height(this.right); } private AvlNode rotateLeft() { Preconditions.checkState(this.right != null); AvlNode avlNode = this.right; this.right = avlNode.left; avlNode.left = this; avlNode.totalCount = this.totalCount; avlNode.distinctElements = this.distinctElements; recompute(); avlNode.recomputeHeight(); return avlNode; } private AvlNode rotateRight() { Preconditions.checkState(this.left != null); AvlNode avlNode = this.left; this.left = avlNode.right; avlNode.right = this; avlNode.totalCount = this.totalCount; avlNode.distinctElements = this.distinctElements; recompute(); avlNode.recomputeHeight(); return avlNode; } private static long totalCount(AvlNode avlNode) { if (avlNode == null) { return 0L; } return ((AvlNode) avlNode).totalCount; } private static int height(AvlNode avlNode) { if (avlNode == null) { return 0; } return ((AvlNode) avlNode).height; } /* JADX INFO: Access modifiers changed from: private */ /* JADX WARN: Multi-variable type inference failed */ public AvlNode ceiling(Comparator comparator, E e) { int compare = comparator.compare(e, this.elem); if (compare < 0) { AvlNode avlNode = this.left; return avlNode == null ? this : (AvlNode) MoreObjects.firstNonNull(avlNode.ceiling(comparator, e), this); } if (compare == 0) { return this; } AvlNode avlNode2 = this.right; if (avlNode2 == null) { return null; } return avlNode2.ceiling(comparator, e); } /* JADX INFO: Access modifiers changed from: private */ /* JADX WARN: Multi-variable type inference failed */ public AvlNode floor(Comparator comparator, E e) { int compare = comparator.compare(e, this.elem); if (compare > 0) { AvlNode avlNode = this.right; return avlNode == null ? this : (AvlNode) MoreObjects.firstNonNull(avlNode.floor(comparator, e), this); } if (compare == 0) { return this; } AvlNode avlNode2 = this.left; if (avlNode2 == null) { return null; } return avlNode2.floor(comparator, e); } public final String toString() { return Multisets.immutableEntry(getElement(), getCount()).toString(); } final E getElement() { return this.elem; } final int getCount() { return this.elemCount; } } /* JADX INFO: Access modifiers changed from: private */ public static void successor(AvlNode avlNode, AvlNode avlNode2) { ((AvlNode) avlNode).succ = avlNode2; ((AvlNode) avlNode2).pred = avlNode; } /* JADX INFO: Access modifiers changed from: private */ public static void successor(AvlNode avlNode, AvlNode avlNode2, AvlNode avlNode3) { successor(avlNode, avlNode2); successor(avlNode2, avlNode3); } private void writeObject(ObjectOutputStream objectOutputStream) throws IOException { objectOutputStream.defaultWriteObject(); objectOutputStream.writeObject(elementSet().comparator()); Serialization.writeMultiset(this, objectOutputStream); } private void readObject(ObjectInputStream objectInputStream) throws IOException, ClassNotFoundException { objectInputStream.defaultReadObject(); Comparator comparator = (Comparator) objectInputStream.readObject(); Serialization.getFieldSetter(AbstractSortedMultiset.class, "comparator").set((Serialization.FieldSetter) this, (Object) comparator); Serialization.getFieldSetter(TreeMultiset.class, "range").set((Serialization.FieldSetter) this, (Object) GeneralRange.all(comparator)); Serialization.getFieldSetter(TreeMultiset.class, "rootReference").set((Serialization.FieldSetter) this, (Object) new Reference()); AvlNode avlNode = new AvlNode(null, 1); Serialization.getFieldSetter(TreeMultiset.class, "header").set((Serialization.FieldSetter) this, (Object) avlNode); successor(avlNode, avlNode); Serialization.populateMultiset(this, objectInputStream); } }