2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-12-07 02:32:13 +00:00
|
|
|
struct trie_node {
|
|
|
|
mut content: ~[~str],
|
|
|
|
mut children: ~[trie_node],
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_str_vector(vector: ~[~str]) {
|
|
|
|
for vector.each() |string| {
|
|
|
|
io::println(*string);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let node: trie_node = trie_node {
|
|
|
|
content: ~[],
|
|
|
|
children: ~[]
|
|
|
|
};
|
|
|
|
let v = ~[~"123", ~"abc"];
|
|
|
|
node.content = ~[~"123", ~"abc"];
|
|
|
|
print_str_vector(v);
|
|
|
|
print_str_vector(copy node.content);
|
|
|
|
|
|
|
|
}
|