You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
405 B
23 lines
405 B
/*
|
|
* File: list_node.rs
|
|
* Created Time: 2023-03-05
|
|
* Author: sjinzh (sjinzh@gmail.com)
|
|
*/
|
|
|
|
use std::rc::Rc;
|
|
use std::cell::RefCell;
|
|
|
|
pub struct ListNode<T> {
|
|
pub val: T,
|
|
pub next: Option<Rc<RefCell<ListNode<T>>>>,
|
|
}
|
|
|
|
impl<T> ListNode<T> {
|
|
pub fn new(val: T) -> Rc<RefCell<ListNode<T>>> {
|
|
Rc::new(RefCell::new(ListNode {
|
|
val,
|
|
next: None,
|
|
}))
|
|
}
|
|
}
|