首页 > 其他 > 详细

给Vector类添加insert

时间:2016-01-21 00:09:22      阅读:275      评论:0      收藏:0      [点我收藏+]
Object objects[theCapacity];
iterator insert(int pos,const Object& x)
{
   
    Object* oldArray=objects;
    theSize++;
    int i=0;
    if(theCapacity<theSize)
        theCapacity=theSize;
    objects=new Object[theCapacity];
    while(i!=pos)
    {
        objects[i]= oldArray[i];
        
        i++;
    }
    objects[pos]=x;
    for(int k=pos;k<theSize;k++)
        objects[k+1]=oldArray[k];
    delete[] oldArray;
    return &objects[pos];
}

 

给Vector类添加insert

原文:http://www.cnblogs.com/CClarence/p/5146852.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!