code-examples/current/algorithms/rust_algo/src/main.rs

56 lines
1.5 KiB
Rust
Raw Normal View History

2025-03-01 16:38:08 +00:00
use std::cell::RefCell;
use std::rc::Rc;
// use std::borrow::BorrowMut;
struct Vertex {
name: String,
edges: RefCell<Vec<Vertex>>
}
struct Graph {
vertices: Vec<RefCell<Vertex>>
}
impl Graph {
fn new() -> Self{
return Graph { vertices: vec![] };
}
2025-03-01 10:41:14 +00:00
2025-03-01 16:38:08 +00:00
fn add_node(&mut self, name: String) {
self.vertices.push(Vertex { name: name, edges: RefCell::new(vec![]) }.into() );
2025-03-01 10:41:14 +00:00
}
2025-03-01 16:38:08 +00:00
fn vertices_count(&self) -> usize {
return self.vertices.len();
}
2025-03-01 10:41:14 +00:00
2025-03-01 16:38:08 +00:00
fn connect(&mut self, i: usize, j: usize) {
// let nodej = Rc::clone(&self.vertices[j]);
// let nodei = Rc::clone(&self.vertices[i]);
// nodei.into_inner();
//nodei.edges.push(nodej);
// .unwrap().push(self.vertices[j]);
// Rc::into_inner(nodei).unwrap().edges.push(nodej);
// self.vertices[i].get.push(self.vertices[j]);
// let mut edges_new = self.vertices[i].edges.get_mut();
// let inner = self.vertices[j].take();
// self.vertices[i].get_mut().edges.borrow_mut().push(inner);
let list = self.vertices[i].get_mut().edges.clone();
self.vertices[i].get_mut().edges.replace(vec![]);
2025-03-01 10:41:14 +00:00
}
2025-03-01 16:38:08 +00:00
}
fn main() {
let mut g = Graph::new();
g.add_node(String::from("Vertice #1"));
g.add_node(String::from("Vertice #2"));
g.add_node(String::from("Vertice #3"));
g.connect(0, 1);
g.connect(1, 2);
2025-03-01 10:41:14 +00:00
2025-03-01 16:38:08 +00:00
println!("Done, Vertices count: {}.", g.vertices_count());
2025-03-01 10:41:14 +00:00
}