Skip to content

Solutions to the Trapping Rainwater programming problem in Rust

Notifications You must be signed in to change notification settings

mspiegel/rainwater

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Trapping Rain Water

This repository has several implementations of the "Trapping Rain Water" programming problem. The implementations are written in the Rust programming language. For an excellent introduction to this problem I recommend watching the lecture Four Solutions to a Trivial Problem by Guy L. Steele Jr.

The problem is specified by a sequence of positive integers. The sequence of numbers are interpreted as a histogram (shown below). Imagine that a bucket of water is poured on top of the histogram. Water will be trapped into the depressions in the histogram. The goal is to compute the amount of water that is trapped by the histogram.

Rain Water Example

The key insight to solving this problem is to note that the amount of water at position i is computed using the max of all heights to the left and the max of all heights to the right. More precisely the amount of water at position i is equal to min(leftmax, rightmax) - height[i].

Scan Operation: Imperative Style

scan_imperative. This is the most straightforward solution. Traverse the array from left to right and compute the prefix maximum of the array. Traverse the array from right to left to compute the suffix maximum of the array. In a third pass of the array combine the prefix scan and the suffix scan to compute the amount of water. If the right-to-left scan is performed first, then the other two passes of the array can be collapsed to a single pass.

Prefix Scan Approach

This solution requires two passes over the array and the allocation of a second array of equal length to store the right-to-left maximum values.

Scan Operation: Functional Style

scan_functional. This is a rewrite of the previous approach using a functional style of programming.

This solution requires two passes over the array and the allocation of a second array of equal length to store the right-to-left maximum values.

Scan Operation: Data Parallel

scan_rayon. This implementation uses the rayon data parallel library for rust. The input array is divided into chunks that are distributed among the processors. To perform a parallel scan computation the array must be traversed twice. In the first traversal the maximum value of each chunk is computed. In the second traversal the prefix max of each chunk is computed using the maximum value of the chunk's neighbor that was calculated in the first traversal.

This solution requires five passes over the array and the allocation of a second and third array to store the prefix max results. The traversals of the array are divided by the number of processors.

Single Pass

onepass_imperative. This implementation requires only a single pass over the input array. How do we do such a magical thing? Begin by computing the local maximum from the left and right ends of the array. Now recall that that the height of the water is calculated as the minimum of the left and right maxima. This implies that the smaller of the left maxima and the right maxima must be the level of the water for either the left side or the right side of the array. Begin traversing the array from the smaller side into another local maxima is reached. Repeat this process until your left and right maxima converge in the middle of the array.

Benchmarks

The following benchmarks were run with rustc 1.11.0 with release build settings.

Input of 10,000 elements:

test cpu_scan_functional ... bench:      26,953 ns/iter (+/- 964)
test cpu_scan_imperative ... bench:      22,005 ns/iter (+/- 8,174)
test cpu_scan_rayon      ... bench:     194,073 ns/iter (+/- 6,844)
test cpu_single_pass     ... bench:       6,647 ns/iter (+/- 1,386)

Input of 100,000 elements:

test cpu_scan_functional ... bench:     257,157 ns/iter (+/- 32,946)
test cpu_scan_imperative ... bench:     226,523 ns/iter (+/- 25,608)
test cpu_scan_rayon      ... bench:     419,996 ns/iter (+/- 16,064)
test cpu_single_pass     ... bench:      62,508 ns/iter (+/- 1,345)

Input of 10,000,000 elements:

test cpu_scan_functional ... bench:  45,442,651 ns/iter (+/- 8,529,116)
test cpu_scan_imperative ... bench:  41,075,526 ns/iter (+/- 7,101,511)
test cpu_scan_rayon      ... bench:  55,053,761 ns/iter (+/- 3,840,731)
test cpu_single_pass     ... bench:   6,752,193 ns/iter (+/- 626,553)

About

Solutions to the Trapping Rainwater programming problem in Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages