LOADING

加载过慢请开启缓存,浏览器默认开启

Waiting for the dawn

daily 1

2023/3/21

daily codeforces

阅读全文

daily 3

algorithm 2023/3/20

daily codeforces

阅读全文

daily 3 -difference

algorithm 2023/3/19

daily codeforces

阅读全文

rust learning writing

2023/3/18
  1. PartialEq PartialOrd trait

让你可以自由地定义=和不=
让你可以自由地定义>和<

  1. 一个标准的单元测试应该这样写
    #[cfg(test)]
    pub mod test{
     use crate::heap::test::Node;
     #[test]
     pub fn test_partial_eq(){
         let node_1=Node{
             value:2,
             pos:3,
         };
         let node_2=Node{
             value:3,
             pos:4,
         };
         assert!(node_1!=node_2);
     }
    }
    
阅读全文

daily 3

2023/3/18

daily codeforces

阅读全文

daily 3

2023/3/17

daily codeforces

阅读全文

introduce to raft

2023/3/16
阅读全文

clang and llvm

compiler 2023/3/16

llvm and clang

阅读全文

每日3t

2023/3/16

daily codeforces

阅读全文

每日3t

2023/3/15

daily codeforces

阅读全文
1 ... 26 27 28 29 30
avatar
Yanxin Xiang

愿有一天能和你最重要的人再次相逢