单链表的创建、添加、删除操作

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>

typedef struct LNode
{
  int data;
  struct LNode *next;
}*Lnode;

//init the single linked list
void Init_L(struct LNode *p)
{
  int n;
  int i = 0;
  Lnode q;
  Lnode  linklist;
  //p = (Lnode) malloc(sizeof(Lnode));
  if(p == NULL)
  {
    puts("error!");
    exit(0);
  }
  linklist = p;
  while(p)
  {
    //i++;
    scanf("%d", &n);
    if(n == -1)
      break;
    q = (Lnode) malloc(sizeof(Lnode));
    p->data = n;
    p->next = q;
    p = q;
    i++;
  }
  q->next = NULL;
  for(i; i > 0; i--)
  {
    printf("/n%d/n", linklist->data);
    linklist = linklist->next;
  }
}

//insert the single linked list
Insert_L(struct LNode *p, int i, int n)
{
  int length = 0;
  int j = 1;
  struct LNode *linklist;
  Lnode p1;
  Lnode q;
  linklist = p;
  p1 = p;
  while(p->next != NULL)
  {
    p = p->next;
    length++;
  }
  printf("length:%d/n", length);
  if((length < i) || (i < 1))
    puts("insert postion is error");
  q = (Lnode) malloc(sizeof(Lnode));
  if(!q)
  {
    puts("malloc errored!");
    exit(0);
  }
  while((p1->next != NULL) && (j < i - 1))
  {
    p1 = p1->next;
    j++;
  }
  if((p1->next) == NULL || (j > i))
  {
    puts("Insert error!");
    exit(0);
  }
  q->data = n;
  q->next = p1->next;
  p1->next = q;
  while(linklist->next != NULL)
  {
    printf("%d/n", linklist->data);
    linklist = linklist->next;
  }
}

//delete from linklist
Delete_L(struct LNode *p, int i)
{
  Lnode q = p;
  Lnode q1 = p;
  int j = 0;
  /*
  while(p->next != NULL)
  {
    printf("%d/n", p->data);
    p = p->next;
  }
  exit(0);
  */
  while((p->next != NULL) && (j < i - 1))
  {
    q1 = p;
    p = p->next;
    j++;
  }
  if((p->next == NULL) || (j > i))
  {
    puts("delete error!");
    exit(0);
  }
  q1->next = p->next;
  while(q->next != NULL)
  {
    printf("%d/n", q->data);
    q = q->next;
  }
}

int main(int argc, char **argv)
{
  struct LNode *ll;
  int i;
  int n;
  ll = (struct LNode *)malloc(sizeof(struct LNode));
  Init_L(ll);
  puts("please input the location and value of insert:");
  scanf("%d %d", &i, &n);
  Insert_L(ll, i, n);
  puts("please input the location of delete:");
  scanf("%d", &i);
  Delete_L(ll, i);
  return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值