weihanglo / rust-algorithm-club

Learn algorithms and data structures with Rust
https://weihanglo.tw/rust-algorithm-club
MIT License
407 stars 43 forks source link

Stack #23

Closed henry40408 closed 5 years ago

henry40408 commented 5 years ago

implement stack and its documentation

ref #10

weihanglo commented 5 years ago

Looks great! Only the API documentation gets some room to improve. You can check similar doc from other collection types as references. To build rustdoc, type the following command:

cargo doc && open target/doc/rust_algorithm_club/index.html

Thank you for your great works.

henry40408 commented 5 years ago

@weihanglo updated, please help review