- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做一个(可能不好的)排序算法作为练习实验。
我正在尝试获取一个未排序的 i32
列表,其中包含重复项,将其分解为一个已排序数组(各种大小)的数组,然后我可以将其有效地重新组合成一个完全排序的数组.重组尚未实现。
mod sort {
use std::collections::VecDeque;
pub fn sort_i32(unsorted_list: &Vec<i32>) { // -> Vec<i32> {
let mut sorting = Vec::with_capacity(unsorted_list.len());
let mut sorting_index = None;
// let mut index: usize = 0;
for number in unsorted_list {
match sorting_index { // sorting_index: Option<usize>
Some(index) => { // index: usize // index<usize>
// let index: usize = index as usize;
if number >= sorting[index].front() {
sorting[index].push_front(number);
} else if number <= sorting[index].back() {
sorting[index].push_back(number);
} else {
let index = index + 1; //index: usize
sorting_index = Some(index);
sorting[index] = VecDeque::with_capacity(unsorted_list.len());
sorting[index].push_front(number);
}
}
None => {
// have to initialize here because we need the first `number` to do so
let index = 0; //index: usize
sorting_index = Some(index);
sorting[index] = VecDeque::with_capacity(unsorted_list.len());
sorting[index].push_front(number);
}
}
}
}
}
我想我需要明确地告诉编译器 index
将是 usize
因为它将成为向量的索引:
error[E0282]: type annotations needed
--> src/main.rs:12:34
|
12 | if number >= sorting[index].front() {
| ^^^^^^^^^^^^^^ cannot infer type for `_`
正常的打字语法似乎不起作用;正如您从评论中看到的那样,我已经尝试了几种方法。
最佳答案
首先要做的是输入sorting
和sorting_index
:
let mut sorting: Vec<VecDeque<i32>> = Vec::with_capacity(unsorted_list.len());
let mut sorting_index: Option<usize> = None;
这将导致在访问 sorting[index]
的代码的各个位置进行大量调整和决策。我可以添加更多内容,但在那之后主要是解决编译器错误并决定如何在算法中处理这些情况。
关于rust - 如何将类型显式分配给 `Option<usize>` 中使用的 `match`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51451113/
我正在尝试在 Rust 中实现冒泡排序算法,但我遇到了类型不匹配错误。有人可以帮助实现吗? 此外,它的实现方式与我在 Python 中实现的方式相同。我确信有一种朴素的方法可以实现这一点。 fn ma
我有一些代码看起来有点像下面这样: let incoming: Vec = Vec::new(); match some_function(|data| { let temp = &mut i
我为 Exercism 做的练习(minesweeper 任务),我需要将 usize 转换为 char 以便将其插入到 std::string::String. 用最少的代码行描述问题: let m
此代码编译: fn main() { let mut s = String::from("some_string"); let n = f1(&s); s.clear();
我有一个二维向量拒绝使用 i32 进行索引值,但如果我使用 as usize 转换这些值,则有效: #[derive(Clone)] struct Color; struct Pixel {
我正在尝试编译一些较旧的 Rust 代码,在这段代码上: const SOMETHING: *const c_char = -1 as *const c_char; 我收到这个错误: error: c
我在 Rust 中有这个功能: fn printboard(board: Vec) { println!("| |{:>2$} {:>2$} {:>2$} {:>2$} {:>2$} {:>
我有一个基于usize输入返回compound duration的函数: pub fn format_dhms(seconds: usize) -> String 如果输入是6000000: prin
假设我有素数和幂的向量: let mut primes: Vec = ...; let mut powers: Vec = ...; 事实是primes.len() == powers.len() .
我有一个 let mut stack: Vec = vec![5, 7, 1]长短不一。在程序的某个时刻,我想增加 stack 的最后一个元素。一个。我试过 stack.last_mut().unwr
有时索引需要紧密打包(例如网格几何),将索引存储为 u32 而不是 usize 很有用。 有没有办法在 Rust 中索引一个向量,而不必每次都显式转换为 usize?例如: vector[some_u
我正在研究 Rust 中的一些编码挑战,其中一个问题是确定一个短语是否是全字母组合。我看到了以下实现: // Copy chars into a vector, sort and remove dup
文档说 usize 是 Operations and constants for pointer-sized unsigned integers. 在大多数情况下,我可以将 usize 替换为 u32
This code works and prints "b":此代码工作并打印“b”: fn main() { let s = "abc";
下面是测试代码: pub fn reverse_complement_seq_u8(seq: T, len: usize) -> Vec where T: std::ops::Index {
我正在学习 Rust 并阅读文档,这时我偶然发现了 isize 和 usize 数据类型。文档中提到了以下内容: The primary situation in which you’d use is
我正在尝试用 Rust 实现快速排序算法,问题是,我有一个名为 'i' 的变量,用作迭代器,但起初,它的值为 '- 1',我不能将它设置为 usize 类型,因为它是负数,但我也不能将它设置为 isi
我正在尝试用 Rust 实现快速排序算法,问题是,我有一个名为 'i' 的变量,用作迭代器,但起初,它的值为 '- 1',我不能将它设置为 usize 类型,因为它是负数,但我也不能将它设置为 isi
isize 和 usize 可以不同吗?它们都可以用于内存大小、索引、偏移量。 因为 usize 用于数组,为什么我们不只使用 usize 我是 Rust 的新手,所以这可能是一个基本问题。 更新:在
我正在做一个(可能不好的)排序算法作为练习实验。 我正在尝试获取一个未排序的 i32 列表,其中包含重复项,将其分解为一个已排序数组(各种大小)的数组,然后我可以将其有效地重新组合成一个完全排序的数组
我是一名优秀的程序员,十分优秀!