Rust - WIP Run Length Encoding

This commit is contained in:
anthony.cicchetti 2017-05-10 09:58:13 -04:00
parent 968195a06b
commit f685454728
22 changed files with 240 additions and 15 deletions

4
rust/run-length-encoding/Cargo.lock generated Normal file
View file

@ -0,0 +1,4 @@
[root]
name = "run-length-encoding"
version = "1.0.0"

View file

@ -0,0 +1,6 @@
[package]
name = "run-length-encoding"
version = "1.0.0"
authors = ["zombiefungus <divmermarlav@gmail.com>"]
[dependencies]

View file

@ -0,0 +1,63 @@
# Run Length Encoding
Implement run-length encoding and decoding.
Run-length encoding (RLE) is a simple form of data compression, where runs
(consecutive data elements) are replaced by just one data value and count.
For example we can represent the original 53 characters with only 13.
```
"WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB" -> "12WB12W3B24WB"
```
RLE allows the original data to be perfectly reconstructed from
the compressed data, which makes it a lossless data compression.
```
"AABCCCDEEEE" -> "2AB3CD4E" -> "AABCCCDEEEE"
```
For simplicity, you can assume that the unencoded string will only contain
the letters A through Z (either lower or upper case) and whitespace. This way
data to be encoded will never contain any numbers and numbers inside data to
be decoded always represent the count for the following character.
## Rust Installation
Refer to the [exercism help page][help-page] for Rust installation and learning
resources.
## Writing the Code
Execute the tests with:
```bash
$ cargo test
```
All but the first test have been ignored. After you get the first test to
pass, remove the ignore flag (`#[ignore]`) from the next test and get the tests
to pass again. The test file is located in the `tests` directory. You can
also remove the ignore flag from all the tests to get them to run all at once
if you wish.
Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
haven't already, it will help you with organizing your files.
## Feedback, Issues, Pull Requests
The [exercism/xrust](https://github.com/exercism/xrust) repository on GitHub is the home for all of the Rust exercises. If you have feedback about an exercise, or want to help implement new exercises, head over there and create an issue. Members of the [rust track team](https://github.com/orgs/exercism/teams/rust) are happy to help!
If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/x-common/blob/master/CONTRIBUTING.md).
[help-page]: http://exercism.io/languages/rust
[crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
## Source
Wikipedia [https://en.wikipedia.org/wiki/Run-length_encoding](https://en.wikipedia.org/wiki/Run-length_encoding)
## Submitting Incomplete Problems
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

View file

@ -0,0 +1,33 @@
pub fn encode(inp_string: &'static str) -> String{
let x = tokenize(inp_string);
let x_tuple = tupleize(x);
let x_converted = tup_convert(x_tuple);
let mut encoded_string: String = "".to_string();
for each in x_converted.into_iter() {
encoded_string.push_str(each);
}
return encoded_string;
}
// Tokenizes a to-be-encoded string
fn tokenize(inp_string: &'static str) -> Vec<&str>{
return vec!["",""]
}
// "Tuple-izes" a to-be-encoded vector
fn tupleize(inp_vec: Vec<&str>) -> Vec<(&str, i32)>{
return vec![("A", 3), ("B", 2)]
}
// Converts tuple into a vector of strings
fn tup_convert(inp_tuple: Vec<(&str, i32)>) -> Vec<&str>{
return vec!["3A", "2B"]
}
pub fn decode(inp_string: &'static str) -> String{
return String::from("")
}
fn main(){
print!("{}", encode("hi"));
}

View file

@ -0,0 +1 @@
{"rustc":5906613950736825566,"features":"[]","target":14451977851119897680,"profile":11352341962817599932,"deps":[],"local":{"MtimeBased":[[1494341904,213281100],"C:\\Users\\ACicchetti\\exercism\\rust\\run-length-encoding\\target\\debug\\.fingerprint\\run-length-encoding-b46ed620e75a0266\\dep-test-lib-run_length_encoding-b46ed620e75a0266"]},"rustflags":[]}

View file

@ -0,0 +1 @@
{"rustc":5906613950736825566,"features":"[]","target":14451977851119897680,"profile":14528549471338536373,"deps":[],"local":{"MtimeBased":[[1494343875,759416000],"C:\\Users\\ACicchetti\\exercism\\rust\\run-length-encoding\\target\\debug\\.fingerprint\\run-length-encoding-e8376a34335b0370\\dep-lib-run_length_encoding-e8376a34335b0370"]},"rustflags":[]}

View file

@ -0,0 +1,5 @@
C:\Users\ACicchetti\exercism\rust\run-length-encoding\target\debug\deps\run_length_encoding-ac87b0671d1d7519.exe: tests\run-length-encoding.rs
C:\Users\ACicchetti\exercism\rust\run-length-encoding\target\debug\deps\run_length_encoding-ac87b0671d1d7519.d: tests\run-length-encoding.rs
tests\run-length-encoding.rs:

View file

@ -0,0 +1 @@
C:\Users\ACicchetti\exercism\rust\run-length-encoding\target\debug\librun_length_encoding.rlib: C:\Users\ACicchetti\exercism\rust\run-length-encoding\src\lib.rs

View file

@ -0,0 +1,86 @@
extern crate run_length_encoding as rle;
// encoding tests
#[test]
fn test_encode_empty_string() {
assert_eq!("", rle::encode(""));
}
#[test]
#[ignore]
fn test_encode_single_characters() {
assert_eq!("XYZ", rle::encode("XYZ"));
}
#[test]
#[ignore]
fn test_encode_string_with_no_single_characters() {
assert_eq!("2A3B4C", rle::encode("AABBBCCCC"));
}
#[test]
#[ignore]
fn test_encode_single_characters_mixed_with_repeated_characters() {
assert_eq!("12WB12W3B24WB", rle::encode(
"WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB"));
}
#[test]
#[ignore]
fn test_encode_multiple_whitespace_mixed_in_string() {
assert_eq!("2 hs2q q2w2 ", rle::encode(" hsqq qww "));
}
#[test]
#[ignore]
fn test_encode_lowercase_characters() {
assert_eq!("2a3b4c", rle::encode("aabbbcccc"));
}
// decoding tests
#[test]
#[ignore]
fn test_decode_empty_string() {
assert_eq!("", rle::decode(""));
}
#[test]
#[ignore]
fn test_decode_single_characters_only() {
assert_eq!("XYZ", rle::decode("XYZ"));
}
#[test]
#[ignore]
fn test_decode_string_with_no_single_characters() {
assert_eq!("AABBBCCCC", rle::decode("2A3B4C"));
}
#[test]
#[ignore]
fn test_decode_single_characters_with_repeated_characters() {
assert_eq!("WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB",
rle::decode("12WB12W3B24WB"));
}
#[test]
#[ignore]
fn test_decode_multiple_whitespace_mixed_in_string() {
assert_eq!(" hsqq qww ", rle::decode("2 hs2q q2w2 "));
}
#[test]
#[ignore]
fn test_decode_lower_case_string() {
assert_eq!("aabbbcccc", rle::decode("2a3b4c"));
}
// consistency test
#[test]
#[ignore]
fn test_consistency() {
assert_eq!("zzz ZZ zZ", rle::decode(rle::encode("zzz ZZ zZ").as_str()));
}

Binary file not shown.

Binary file not shown.

View file

@ -1,19 +1,42 @@
pub fn sum_of_multiples(x: i64, factors: &Vec<i64>) -> i64 {
let mut sum: i64 = 0;
for i in factors{
print!("Factor: {}\n", i);
for j in 2..x{
print!("j: {}\n", j);
print!("mod: {0} % {1} = {2}\n", j, i, i%j);
if j % i == 0{
sum += j;
print!("Sum: {}\n", sum);
}
}
pub fn encode(inp_string: &'static str) -> String{
let x = tokenize(inp_string);
let x_tuple = tupleize(x);
let x_converted = tup_convert(x_tuple);
let mut encoded_string: String = "".to_string();
for each in x_converted.into_iter() {
encoded_string.push_str(each);
}
return sum;
return encoded_string;
}
pub fn main() {
sum_of_multiples(10, &vec![3,5]);
// Tokenizes a to-be-encoded string
fn tokenize(inp_string: &'static str) -> Vec<&str>{
return vec!["AAA","BB","C", "DDDD"]
}
// "Tuple-izes" a to-be-encoded vector
fn tupleize(inp_vec: Vec<&str>) -> Vec<(char, usize)>{
let mut tupleized: Vec<(char, usize)> = Vec::new();
for each in inp_vec {
tupleized.push((each.chars().next().unwrap(), each.len()));
}
return tupleized;
}
// Converts tuple into a vector of strings
fn tup_convert(inp_tuple: Vec<(char, usize)>) -> Vec<&'static str>{
let mut converted: Vec<&'static str> = Vec::new();
for i in inp_tuple.len().iter() {
let converted_element: &'static str = inp_tuple[i].1.as_str() + inp_tuple[i].0.as_str();
converted.push(converted_element);
}
return converted;
}
pub fn decode(inp_string: &'static str) -> String{
return String::from("")
}
fn main(){
print!("{}", encode("hi"));
}