mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
4ff04f641b
Change-Id: Icdcc648f42393b28daf648f752e3b4d61f51aa10 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/212043 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
39 lines
1,017 B
Dart
39 lines
1,017 B
Dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'package:kernel/src/heap.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
void check_sort(Iterable<int> initialOrder) {
|
|
var values = initialOrder.toList();
|
|
var heap = new _intHeap();
|
|
values.forEach(heap.add);
|
|
values.sort();
|
|
var result = <int>[];
|
|
while (heap.isNotEmpty) {
|
|
expect(heap.isEmpty, isFalse);
|
|
result.add(heap.remove());
|
|
}
|
|
expect(heap.isEmpty, isTrue);
|
|
expect(result, values);
|
|
}
|
|
|
|
test('sort', () {
|
|
check_sort(<int>[3, 1, 4, 1, 5, 9, 2, 6]);
|
|
});
|
|
|
|
test('sort_already_sorted', () {
|
|
check_sort(<int>[1, 1, 2, 3, 4, 5, 6, 9]);
|
|
});
|
|
|
|
test('sort_reverse_sorted', () {
|
|
check_sort(<int>[9, 6, 5, 4, 3, 2, 1, 1]);
|
|
});
|
|
}
|
|
|
|
class _intHeap extends Heap<int> {
|
|
@override
|
|
bool sortsBefore(int a, int b) => a < b;
|
|
}
|