Chinaunix首页 | 论坛 | 博客
  • 博客访问: 674241
  • 博文数量: 463
  • 博客积分: 40000
  • 博客等级: 大将
  • 技术积分: 4580
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-15 16:47
文章分类

全部博文(463)

文章存档

2011年(1)

2008年(462)

我的朋友

分类:

2008-10-15 16:53:01

以下是引用片段:
  namespace fy_Exp{
  namespace {template 
  inline _T GetExpValue(_T t[], char& csym){
  char c=csym; csym=0;
  switch(c){
  case ´+´:return t[0] += t[1];
  case ´-´:return t[0] -= t[1];
  case ´*´:return t[0] *= t[1];
  default: return t[0] /= t[1];//case ´/´:
  }
  }}
  template 
  /* _Tstream: inputstream, _T: get return value
  * Return nonzero if get value successfully */
  int GetExpValue(_Tstream& istrin, _T& nReturn){
  _T t[3] = {0}; //雨中飞燕之作
  char csym[3] = "++";
  int nLevel = 1, nERR = 0;
  if(!(istrin>>t[1]))istrin.clear();
  for(;;){
  if(istrin>>csym[2]){
  switch(csym[2]){
  case ´(´:
  if(!csym[1]){nLevel=0x100; nERR=1;}else
  if(!GetExpValue(istrin, t[2]))nLevel|=0x10;
  else{nLevel=0x100; nERR=1;}
  break;
  case ´)´:
  {nLevel = 0x100;}break;
  case ´+´:case ´-´:case ´*´:case ´/´:
  {csym[nLevel++] = csym[2];}break;
  case ´ ´:case ´\r´:case ´\n´:case ´\t´:continue;
  default:
  {nLevel=0x100; nERR=1;}
  }
  if(nLevel==0x100)break;
  if(nLevel&0x10 || istrin>>t[2]){
  nLevel &= 0xF;
  if(nLevel==1){t[1]=t[2];csym[1]=0;continue;}
  if(csym[1]==´*´||csym[1]==´/´){
  GetExpValue(t+1, csym[1]);
  }
  else{
  GetExpValue(t, csym[0]);
  t[1]=t[2];csym[0]=csym[1];csym[1]=0;
  }
  nLevel = 1;
  }
  else istrin.clear();
  }
  else{nERR = -1; break;}
  }
  if(csym[1])t[2]=0,nReturn=GetExpValue(t+1, csym[1]);
  else nReturn=GetExpValue(t, csym[0]);
  return nERR==-1?1:0;
  }}
--------------------next---------------------

阅读(393) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~