首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴qq183340093的代码贴C++
#include<iostream>
#include<string>
using namespace std;
struct node{
char data;
node *lch,*rch;
};
void creat(node*p,string str,int r)
{
p->data=str[r];
if(str[2*r+1]=='#'||r*2+1>str.size()-1)
p->lch=NULL;
......................
阅读全部 | 2013年11月6日 20:30
1
qq183340093