VS2010新建项目里本来就有几行代码,我要写C++程序的话应该写在哪个位置?
就拿这段程序来举例的话,应该分别写在上边这几行代码的什么位置?另外,下边这段代码完整吗?我的意思是可以直接用吗?==求大神回答,我C++一点都没学就直接学数据结构,要疯了...
就拿这段程序来举例的话,应该分别写在上边这几行代码的什么位置?另外,下边这段代码完整吗?我的意思是可以直接用吗?= = 求大神回答,我C++一点都没学就直接学数据结构,要疯了。
struct st{ int data; struct st *next;};struct st *insenode(struct st *head,int x){ struct st *new,*last,*current; new =(struct st *)malloc(sizeof(struct st)); new->data=x; current=head; while(x>current->data && current->data!=null) { last=current; current=current->next; } if(x<=current->data) { if(current==head) { new->next=head; head=new; } else { new->next=current; last->next=new; } } else { new->next=null; current->next=new; } return(new);} 展开
struct st{ int data; struct st *next;};struct st *insenode(struct st *head,int x){ struct st *new,*last,*current; new =(struct st *)malloc(sizeof(struct st)); new->data=x; current=head; while(x>current->data && current->data!=null) { last=current; current=current->next; } if(x<=current->data) { if(current==head) { new->next=head; head=new; } else { new->next=current; last->next=new; } } else { new->next=null; current->next=new; } return(new);} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询