完美C/C++缩进(误

void function()
{ xxxxxxx;
  if ()
   { xxxxxxxx;
     xxxxxxxx; }}
void Insert(CNode * pRoot, char * s)
{ for( int i = 0; s[i]; i ++ )
    { if( pRoot->pChilds[s[i]-'a'] == NULL)
        { pRoot->pChilds[s[i]-'a'] = Tree + nNodesCount;
          nNodesCount ++; }
      pRoot = pRoot->pChilds[s[i]-'a']; }
  pRoot-> bBadNode = true; }
3 个赞

Lisp 写多了的症状之一

2 个赞

这个为啥完美了?不如默认的 风格好看啊。 话说你这风格到华为的话会被虐滴~~~:joy:

void function()
{ 
   xxxxxxx;
   if ()
   { 
       xxxxxxxx;
       xxxxxxxx;
   }
}

哈哈哈这个是lisp风格的cc缩进

别认真,楼主在卖萌 01

此时,一名大括号不换行的网友路过(虽然我不写c)