Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 404 Bytes

File metadata and controls

29 lines (18 loc) · 404 Bytes
title Algorithm4 Java Solution 1.3.48
date 2019-07-28 08:47:27 +0800
draft false
tags
JAVA
categories
TECH
archives

1.3.48

Problem:

Two stacks with a deque. Implement two stacks with a single deque so that each operation takes a constant number of deque operations (see Exercise 1.3.33).

Solution:

code:

Ex_1_3_48.java

Reference: