Segment Chinese sentences into component words using a dictionary-driven largest first matching approach.
```rust extern crate chinese_segmenter;
use chinese_segmenter::{initialize, tokenize};
let sentence = "今天晚上想吃羊肉吗?"; initialize(); // Optional intialization to load data let result: Vec<&str> = tokenize(sentence); println!("{:?}", result); // --> ['今天', '晚上', '想', '吃', '羊肉', '吗'] ```