test_tree.output

来自「一个德国人Kasper Peeters用C++ template写的tree的S」· OUTPUT 代码 · 共 289 行

OUTPUT
289
字号
empty tree to begin with:0 'more text' is sibling 2 in its sibling rangefilled tree:-----extrahtml  body    before h1    h1      some text    more text-----filled tree, post-order traversal:-----extra    before h1      some text    h1    more text  bodyhtml-----swapped elements:-----extrahtml  body    h1      some text    before h1    more text-----swapped back:-----extrahtml  body    before h1    h1      some text    more text-----copied tree:-----h1  some text-----result of search for h1 and kasper:-----h1  some text-----kasper not foundreplacement tree:-----h3  text in h3----------extrahtml  body    before h1    h1      some text    more text-----filled tree with replacement done:-----extrahtml  body    before h1    h3      text in h3    more text----------extrahtml  body    before h1    <foobar>      text in h3    more text----------extrahtml  body    before h1    <foobar>      text in h3    more    more text-----moved content:-----extrahtml  body    <foobar>      text in h3      before h1    more    more text-----children of h1:text in h3before h1flattened (at h3) tree:-----extrahtml  body    <foobar>    text in h3    before h1    more    more text-----children of body erased:-----extrahtml  body-----h1 not founderased tree:-----html  body-----copies still exist:-----extrahtml  body    before h1    <foobar>      text in h3    more    more text----------extrahtml  body    before h1    <foobar>      text in h3    more    more text-----testing comparison functions:1 (should be 1)<foobar>0 (should be 0)0 (should be 0)1 (should be 1)tree flattened, test again-----extrahtml  body    before h1    <foobar>    text in h3    more    more text-----0 (should be 0)1 (should be 1)0 (should be 0)0 (should be 0)unsorted subtree:-----extrahtml  body    before h1    modified    text in h3      ccc      bbb      bbb      aaa    more    more text-----partially sorted subtree: (sorted from text in h3 to more text, excluding the last element)-----extrahtml  body    before h1    modified    more    text in h3      ccc      bbb      bbb      aaa    more text-----sorted subtree:-----extrahtml  body    before h1    modified    more    more text    text in h3      aaa      bbb      bbb      ccc-----test merge-----html  head    title  body    h1    h1----------head  another title----------html  head    title  body    h1    h1head  another title----------html  head    title    another title  body    h1    h1head  another title----------  another titlehead    h1    h1  body    another title    title  headhtml----------head  another titlehtml  body    h1    h1  head    another title    title-----ABCDEFGHI

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?