Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 389 Bytes

Ex_1_3_32.md

File metadata and controls

28 lines (17 loc) · 389 Bytes
title date draft tags categories
Algorithm4 Java Solution 1.3.32
2019-07-04 05:47:10 +0800
false
JAVA
TECH
archives

1.3.32

Problem:

Steque.

A stack-ended queue or steque is a data type that supports push, pop, and enqueue. Articulate an API for this ADT. Develop a linked-list-based implementation.

Solution:

refer to code.

Reference: