| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 433 人关注过本帖
标题:程序结果有问题,麻烦哪位高手解决下!
取消只看楼主 加入收藏
优酷比
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2010-7-14
收藏
 问题点数:0 回复次数:0 
程序结果有问题,麻烦哪位高手解决下!
NSLinList.h
typedef struct node{
    DataType data;
    struct node *next;
}NSLNode;

void NSLLInitiate(NSLNode **head){
    *head=NULL;
}

int NSLLInsert(NSLNode **head,int i,DataType x){
    NSLNode *p,*q;
    int j;

    p=*head;j=1;
    while(p!=NULL&&j<i-1){
        p=p->next;j++;
    }

    if(j!=i-1&&i!=1){
        printf("插入位置参数错!");
        return 0;
    }

    if((q=(NSLNode *)malloc(sizeof(NSLNode)))==NULL)exit(1);
    q->data=x;

    if(i==1){
        q->next=*head;
        *head=q;
        //printf("%d\n",(*head)->data);
        
    }
    else{
        q->next=p->next;
        p->next=q;
        //printf("%d\n",p->next->data);
    }

    return 1;
}

int NSLLDelete(NSLNode **head,int i,DataType *x)
{
    NSLNode *p,*q;
    int j;

    p=*head;j=1;
    while(p!=NULL&&p->next!=NULL&&j<i-1){
        p=p->next;
        j++;
    }

    if(j!=i-1&&i!=1){
        printf("删除位置参数错!");
        return 0;
    }

    if(i==1){        
        q=p;
        *head=(*head)->next;

        
    }
    else
    {

        q=p->next;
   
        
        p->next=p->next->next;
        
    }
    *x=q->data;free(q);

   
   
    return 1;

}
     

main.cpp

#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
typedef int DataType;
#include"NSLinList.h"
void main(){
    DataType test[6]={64,6,7,89,12,24};
    NSLNode *head,*p;
    int n=6,i;
    DataType *x;

    NSLLInitiate(&head);
    for(i=1;i<=n;i++){
        NSLLInsert(&head,i,test[i-1]);
    }

    for(i=n;i>=1;i--){
        NSLLDelete(&head,i,x);
        printf("%d\n",*x);
    }
    printf("\n");
}


搜索更多相关主题的帖子: 结果 麻烦 
2010-07-14 12:01
快速回复:程序结果有问题,麻烦哪位高手解决下!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014093 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved