0

我正在制作一棵霍夫曼树,我已经完成了我的工作。但是当我读取一个字符时出现了一个问题,它在第一部分读取为零而不是空格“”。

这是代码。该错误发生在 decode文件处理期间的函数中。

void huffmantree<h>::decode(){
    CString *st;
hscll<h> * temp=new hscll<h> ();
int h;
    ifstream myfile;
  myfile.open ("z://aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaae.txt");
  myfile >>h;
  cout<<h;

  for(int i=0;i<h;i++)
  {char  temp9[100];
  char l;

  myfile >>l; 
  temp->insert(l);
     // myfile >> l ;

      myfile >> temp9;
      temp->atindex(i)->symboc.symbol=l;
      temp->atindex(i)->code->setString(temp9);
      //myfile >> '\n';
  }
  _getch();

    //CString u;
    //char k;
    //int p=0;
    //for(int i=0;i<st->m_length;i++)
    //{
    //  for(int j=0;j<8;j++)
    //  {
    //      
    //      char a;
    //      a=st->charAt(i);
    //      int temp=1;
    //      if(j==0)
    //          temp=1;
    //      if(a!='0')
    //      {
    //          for(int y=0;y<j;y++)
    //              {
    //                      temp*=2;
    //              }
    //          p+=temp;
    //      }
    //      else 
    //      {
    //      p+=0;
    //      
    //      }

    //      i++;
    //      cout<<a;
    //  }
    //  k=p;
    //  char t=7;
    //  //cout<<"      "<<t<<"    "<<p<<endl;
    //  myfile << k;
    //  p=0;
    //  u.addcharbychar(k);
    //}
    ////cout<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<u.getString();
    ////cout<<endl<<endl<<endl<<"the length is =="<<u.m_length<<endl;
  myfile.close();
}
4

1 回答 1

2

如果>>用于输入,则会跳过前导空格。如果您正在读取二进制数据,则需要以二进制模式 ( myfile.open( name, std::ios::in | std::ios::binary) 打开文件并使用非格式化输入函数,例如istream::get(). (并且在编写时,您还需要编写二进制文件。)

于 2012-06-20T11:06:56.370 回答