/ccf-code

some studying codes to solve ccf problems using CC

Primary LanguageC++

ccf-code

算法思维系列 ebook labuladong的算法小抄 some studying codes to solve ccf problems using CC

first and a test for git version control

version 2

laptop

Test code

    #include <iostream>
    using namespace std;
    int main()
    {
        cout<<"hello world"<<endl;
        return 0;
    }
  • test
    • test1
    • test2
graph TD
    A-->B
    A-->C
    B-->D
    C-->D
Loading
st=>start: 开始
op=>operation: My operation
cond=>condition: Yes or No?
e=>end: 结束
st->op->cond
cond(yes)->e
cond(no)->op