2023-11-29 10:39:24 -05:00
|
|
|
// Copyright 2023 Google LLC
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
#![allow(unused_variables, dead_code)]
|
|
|
|
|
// ANCHOR: solution
|
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
use std::hash::Hash;
|
|
|
|
|
|
|
|
|
|
/// Counter counts the number of times each value of type T has been seen.
|
2024-04-12 14:07:08 -07:00
|
|
|
struct Counter<T> {
|
2023-11-29 10:39:24 -05:00
|
|
|
values: HashMap<T, u64>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: Eq + Hash> Counter<T> {
|
|
|
|
|
/// Create a new Counter.
|
|
|
|
|
fn new() -> Self {
|
2023-12-31 00:15:07 +01:00
|
|
|
Counter { values: HashMap::new() }
|
2023-11-29 10:39:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Count an occurrence of the given value.
|
|
|
|
|
fn count(&mut self, value: T) {
|
|
|
|
|
*self.values.entry(value).or_default() += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Return the number of times the given value has been seen.
|
|
|
|
|
fn times_seen(&self, value: T) -> u64 {
|
|
|
|
|
self.values.get(&value).copied().unwrap_or_default()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ANCHOR: main
|
|
|
|
|
fn main() {
|
|
|
|
|
let mut ctr = Counter::new();
|
|
|
|
|
ctr.count(13);
|
|
|
|
|
ctr.count(14);
|
|
|
|
|
ctr.count(16);
|
|
|
|
|
ctr.count(14);
|
|
|
|
|
ctr.count(14);
|
|
|
|
|
ctr.count(11);
|
|
|
|
|
|
|
|
|
|
for i in 10..20 {
|
|
|
|
|
println!("saw {} values equal to {}", ctr.times_seen(i), i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut strctr = Counter::new();
|
|
|
|
|
strctr.count("apple");
|
|
|
|
|
strctr.count("orange");
|
|
|
|
|
strctr.count("apple");
|
|
|
|
|
println!("got {} apples", strctr.times_seen("apple"));
|
|
|
|
|
}
|
|
|
|
|
// ANCHOR_END: main
|