OOP_IO-2x_2023-mirror/Rust/lab_2/src/main.rs

144 lines
4.3 KiB
Rust
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// #[allow(dead_code)]
fn capitalise(s: &str) -> String {
let mut c = s.chars();
match c.next() {
None => String::new(),
Some(f) => f.to_uppercase().collect::<String>() + c.as_str(),
}
}
fn read_row() -> Vec<i16> {
loop {
print!("Row (separated by spaces): ");
let raw_row: String = text_io::read!("{}\n");
let trimmed_row: &str = raw_row.trim();
match trimmed_row.split(" ").all(|value| {
value.chars().all(|char| char.is_numeric() || char == '-')
&& value.parse::<i32>().unwrap() <= i16::MAX as i32
&& value.parse::<i32>().unwrap() >= i16::MIN as i32
}) {
true => {
return trimmed_row
.split(" ")
.map(|value| value.parse::<i16>().unwrap())
.collect::<Vec<i16>>()
}
false => println!("[Error] The row must consist of short integers, try again."),
}
}
}
fn generate_row(row_index: u16, length: u16) -> Vec<i16> {
return (0..length)
.map(|element_index| (element_index as i16 + 1) * (row_index as i16 + 1))
.collect();
}
fn read_matrix() -> Vec<Vec<i16>> {
let rows: u16 = protected_u16_read("the number of rows");
loop {
print!("Generate [s]quare or [r]ectangle matrix or [i]nput manually [s/r/i]: ");
let option: String = text_io::read!();
match option.to_lowercase().as_str() {
"s" => return (0..rows).map(|i| generate_row(i, rows)).collect(),
"r" => {
let columns: u16 = protected_u16_read("the number of columns");
return (0..rows).map(|i| generate_row(i, columns)).collect();
}
"i" => return (0..rows).map(|_| read_row()).collect(),
_ => println!("[Error] Not an option, try again."),
}
}
}
fn protected_u16_read(variable_name: &str) -> u16 {
use text_io::try_read;
loop {
print!("Enter {}: ", variable_name);
let read_result: Result<u16, _> = try_read!();
match read_result {
Ok(read_integer) => return read_integer,
Err(_e) => println!(
"{} must be a short integer, try again.",
capitalise(variable_name)
),
}
}
}
fn multiply_matrix_by_number(matrix: &Vec<Vec<i16>>, multiplier: u16) -> Vec<Vec<i16>> {
return matrix
.iter()
.map(|row| {
row.iter()
.map(|element| element * multiplier as i16)
.collect()
})
.collect();
}
fn average_of_row(row: &Vec<i16>) -> f32 {
return row.iter().sum::<i16>() as f32 / row.len() as f32;
}
fn format_matrix(matrix: &Vec<Vec<i16>>) -> String {
let max_width = matrix
.iter()
.map(|row| {
row.iter()
.map(|element| element.to_string().len())
.max()
.unwrap()
})
.max()
.unwrap();
let mut formatted_matrix: String = matrix
.iter()
.map(|row| {
row.iter()
.map(|element| format!("| {:max_width$} ", element))
.collect::<Vec<String>>()
.join("")
})
.collect::<Vec<String>>()
.join("|\n");
formatted_matrix.push('|');
return formatted_matrix;
}
fn format_column(column: &Vec<f32>) -> String {
let max_width = column
.iter()
.map(|element| element.to_string().len())
.max()
.unwrap();
return column
.iter()
.map(|element| format!("| {:max_width$} |", element))
.collect::<Vec<String>>()
.join("\n");
}
fn main() {
let full_vec_test: Vec<Vec<i16>> = read_matrix();
println!("\nMatrix B:\n{}\n", format_matrix(&full_vec_test));
let mult_full_vec_test: Vec<Vec<i16>> =
multiply_matrix_by_number(&full_vec_test, protected_u16_read("matrix multiplier"));
println!("Matrix a×B:\n{}\n", format_matrix(&mult_full_vec_test));
let row_averages: Vec<f32> = mult_full_vec_test
.iter()
.map(|row| average_of_row(row))
.collect();
println!(
"Averages for each row in a×B:\n{}",
format_column(&row_averages)
);
/*row_averages
.iter()
.for_each(|element| println!("{}", element))*/
}