stack 0.2.2 copy "stack: ^0.2.2" to clipboard
stack: ^0.2.2 copied to clipboard

A package for stack data structure. have the push, pop, size, length, and top functionalities.

dart_stack #

A dart package for stack datastructure

pub codecov CircleCI

Usage #

Add dev dependency to your pubspec.yaml:

dev_dependencies:
  stack: ^0.0.1
copied to clipboard

Run pub get to install.

How it works #

Import

import 'package:stack/stack.dart';
copied to clipboard

Example

// Initialize
Stack<String> stack = Stack();
// Push
stack.push('abc');
// See the top
stack.top();
// Pop the top
stack.pop();
// Check for empty
stack.isEmpty;
// Check for non-enpty
stack.isNotEmpty;
// see if the stack has a certain object
stack.contains("abc");
// print the complete stack
stack.print();
// get size of current stack
stack.size() || var s = stack.size()
copied to clipboard

Exceptions #

Trying to use top() or pop() on an empty stack throws IllegalOperationException. use size(), isEmpty, or isNotEmpty to check before using these operations.

Feel free to file feature requests and bug reports at the issue tracker.

38
likes
150
points
9.48k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.16 - 2025.03.31

A package for stack data structure. have the push, pop, size, length, and top functionalities.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on stack