資料結構——線性表

來源:互聯網
上載者:User

#include<stdio.h>
#define MaxSize 50
typedef char ElemType;
struct List
{
 ElemType list[MaxSize];
 int size;
}
setnull(struct List *p)//置空
{
 p->size=0;

}
int length(struct List *p)//求長度
{
 return (p->size);
}
ElemType get(struct List *p,int i)//取第i歌節點
{
 if(i<1&&i>p->size)
  printf("位置參數error!/n");
 else
  return(p->list[i-1]);
}
int locate(struct List *p,ElemType x)//定位
{
 int i=0;
 while(i<p->size&&p->list[i]!=x) i++;
 if(i==p->size)
  return(-1);
 else
  return(i+1);

}
void insert(struct List *p,ElemType x,int i)//插入結點
{
 int j;
 if(i<1||i>p->size+1)
  printf("位置參數error!/n");
 else
 {
  p->size++;
  for(j=p->size-1;j>=i;j--)
   p->list[j]=p->list[j-1];
  p->list[j]=x;
 }

}
void del(struct List *p,int i)
{
 int j;
 if(i<1&&i>p->size+1)
  printf("位置參數error!/n");
 else
 {
  for(j=i-1;j<p->size-1;j++)//結點前移
   p->list[j]=p->list[j+1];
  p->size--;

 }
}
display(struct List *p)
{
 int j;
 if(p->size==0)
  printf("Empty rable!/n");
 else
 {
  printf("順序表:/n");
  if(p->size==1)
   printf("%c",p->list[p->size]);
  else
  {
   for(j=0;j<p->size-1;j++)
    printf("%c->",p->list[j]);
   printf("%c",p->list[j]);
  }
  printf("/n");
 }
}

main()
{
 struct List L;
 setnull(&L);
 insert(&L,'a',1);
 insert(&L,'s',1);
 insert(&L,'f',2);
 insert(&L,'d',1);
 insert(&L,'z',3);
 insert(&L,'c',2);
 display(&L);
 printf("值%c位置:%5d/n:",'a',locate(&L,'a'));
 printf("delete the second element~/n");
 del(&L,2);
 display(&L);
 printf("delete the first element~/n");
 del(&L,1);
 display(&L);
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.