linear_structures 1.0.0 copy "linear_structures: ^1.0.0" to clipboard
linear_structures: ^1.0.0 copied to clipboard

outdated

Implementation of all linear data structures in Dart.

Linear structures #

Implementation of all common linear data structures in Dart.

Pub

Usage #

add linear_structures as a dependency in your pubspec.yaml file.

dependencies:
  flutter:
    sdk: flutter
  linear_structures: 1.0.0

Run pub get to install.

Content #

Example #

DoublyLinkedList<String> list = DoublyLinkedList();
print("list is empty: ${list.isEmpty}");

list.addLast("B");
list.addFirst("A");
list.addLast("C");

print(list.getAll());
print("removed element: ${list.removeLast()}");
print(list.getAll());
7
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Implementation of all linear data structures in Dart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on linear_structures