Chinaunix首页 | 论坛 | 博客

wdp

  • 博客访问: 13357
  • 博文数量: 8
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 80
  • 用 户 组: 普通用户
  • 注册时间: 2016-12-03 16:47
个人简介

有时候……

文章分类
文章存档

2017年(8)

我的朋友
最近访客

分类: 信息化

2017-03-01 17:46:52



实现代码:
char *mystrtok(char *s,const char *delim) 
{
    
static char *last;
    
char *tok;
    
char *ucdelim;
    
char *spanp;
    
int c,sc;

    
/*s为空,并且上次剩余值也为空,则直接返回NULL,否则s为last或当前值中有值的一方*/
    
if (s == NULL && (s = last) == NULL)
        
return NULL;
  
    
    
int found = 0;//是否找到与delim匹配的字符
    
    
//处理连续的待匹配的字符
    cont:
    c
=*s++;
    
for (spanp = (char *)delim;(sc = *spanp++!= 0;)
    
{
        
if (c == sc)
            
goto cont;
    }

    
if (c == 0
    
{
        last 
= NULL;
        
return NULL;
    }


    tok 
= s-1;
    
while (!found && *!= '\0'
    
{
        ucdelim 
= (char *) delim;
        
while (*ucdelim) 
        
{
            
if (*== *ucdelim) 
            
{
                found 
= 1;
                
*= '\0';
                last 
= s + 1;
                
break;
            }

            ucdelim
++;
        }

        
if (!found)
        
{
            s
++;
            
if(*s=='\0')
                last 
= NULL;
        }

    }


    
return tok;
阅读(640) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:对static、const等六个关键字的理解

给主人留下些什么吧!~~