程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 順序存儲的線性表

順序存儲的線性表

編輯:C++入門知識

[cpp] 
/*
 * 順序存儲的線性表
 */ 
#include <stdio.h> 
 
#define OK 1 
#define ERR 0 
 
#define LIST_INIT_SIZE 100 
#define LIST_INCREMENT 10 
#define ElemType char 
 
typedef struct { 
    ElemType *elem; 
    int length;//元素個數 
    int listSize;//總容量 
} SqList; 
      www.2cto.com
int InitList(SqList *aList) 

    aList->elem = (ElemType *)malloc(sizeof(ElemType)*LIST_INIT_SIZE); 
    if(NULL == aList->elem)return ERR; 
    aList->listSize = LIST_INIT_SIZE; 
    aList->length = 0; 
    return OK; 

 
int ListInsert(SqList *aList,ElemType e,int index) 

    int i; 
    if( index<0 || index>aList->length ){ 
        printf("Error : Insert %c to wrong position %d\n",e,index); 
        return ERR;//中間不允許存在空位 
    } 
    if( aList->listSize <= aList->length ) 
    { 
        aList->elem = (ElemType *)realloc(aList->elem, 
                            sizeof(ElemType)*aList->listSize+LIST_INCREMENT); 
        if(NULL == aList->elem) return ERR; 
        aList->listSize += LIST_INCREMENT; 
    } 
 
    printf("Insert %c to position %d\n",e,index ); 
    i = aList->length; 
    while(i>index) 
    { 
        aList->elem[i] = aList->elem[i-1]; 
        i--; 
    } 
 
    aList->elem[index] = e; 
    aList->length++; 
 
    return OK; 

 
int ListDelete(SqList *aList,ElemType *e,int index) 

    int i = index; 
    if(i<0 || i>=aList->length)return ERR; 
 
    *e = aList->elem[index]; 
 
    i = index; 
    while(i<aList->length-1) 
    { 
        aList->elem[i] = aList->elem[i+1]; 
        i++; 
    } 
    aList->length--; 
 
    return OK; 

 
int ListTraverse(SqList aList) 

    int i=0; 
    while(i < aList.length){ 
        printf("%c\t",aList.elem[i]); 
        i++; 
    } 
    printf("\n"); 
    return OK; 

 
int main(int argc, char *argv[]) 

    SqList aList ; 
    char element; 
    int position; 
 
    InitList( &aList ); 
 
    while(1){ 
        printf("Please input element and position to insert in (input ; to quit) :\n"); 
        scanf("%1s,%d",&element,&position); 
        if(';' == element) break; 
        ListInsert(&aList,element,position); 
    } 
 
    ListDelete(&aList,&element,0); 
 
    ListTraverse(aList); 
 
    printf("length :%d . \n",aList.length); 
    return OK; 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved