毕业论文论文范文课程设计实践报告法律论文英语论文教学论文医学论文农学论文艺术论文行政论文管理论文计算机安全
您现在的位置: 毕业论文 >> 论文 >> 正文

数据结构课程设计文章编辑器 第2页

更新时间:2008-9-5:  来源:毕业论文

数据结构课程设计文章编辑器 第2页

4.程序编码

#define true 1

#define false 0

#include <stdlib.h>

#include <stdio.h>

#include <malloc.h>

#include <string.h>

#include <conio.h>

#define STACK_INIT_SIZE 100  

#define STACKINCREMENT 10    

typedef struct

    {

      char *base; 

      char *top; 

      int stacksize; 

    }

      SqStack;

SqStack S,q;

typedef struct {

            char cc[99];

            int no;

}

   Array;

   Array a[100];

  int m,n,i,j;

  char name[40];

  char t='\n';

  FILE *fp;

 /* construct an emputy shed*/

void InitStack()

{ 

    S.base=(char *)malloc(STACK_INIT_SIZE*sizeof(char));

    if(S.base==NULL)

       exit(1);

  S.top=S.base;

    S.stacksize=STACK_INIT_SIZE;

}

 

void push(char e)

{

 if(S.top-S.base>=S.stacksize)

    {   

 

S.base=(char*)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(char));

        /* Attempts to shrink or expand the previously allocated block to size bytes.

           Returns the address of the reallocated block which can be different than the

           original address. If the block cannot be reallocated address. If the block

           cannot be

        S.top=S.base+S.stacksize;

        S.stacksize+=STACKINCREMENT;

    }

 

    *S.top++=e;

}

 

char pop()

{   

   char e;

    if(S.top==S.base)

        return false;

    e=*(--S.top);

    return e;

}

 

void ClearStack()

{   

   S.top=S.base;

}

 

void DestroyStack()

{   

    free(S.base); 

    S.top=S.base;

}

int StackEmpty( )                    

{

 if (S.top==S.base)

     return true;

return false;

}

 

void Buffer( )

  {

    n=0;

    m=1;

 

   while (S.top!=S.base)

    {  

        n=n+1;

        a[m].no=a[m].no+1;

        a[m].cc[n]=*(S.top-1);

        S.top--;

    }

}

 

void save()

{   

    printf("\n\nfile name:");

    scanf("%s",&name);

    fp=fopen(name,"wb");

    for (i=1;i<=m;i++)

    { 

void main()

{    需要完整内容的请联系QQ752018766,本文免费,转发请注明源于www.751com.cn

    char ch,e;

    printf("\n\n\n\t\t\t  welcome to use the  whole screen editor");

    printf("\n\n   press F6 if you want to save the file,you can save the file when you see\"^Z\" \n");

 

printf("\n***********************************************************\n\n");

 

    InitStack();

 

    ch=getchar();

    while(ch!=EOF)

    {      

        while(ch!=EOF&&ch!='\n')

        {            

           switch(ch)

            { 

              case '#':e=pop();break;

              case '@':ClearStack();break;

           default:push(ch);break;

            }

        ch=getchar();

上一页  [1] [2] [3] [4] 下一页

数据结构课程设计文章编辑器 第2页下载如图片无法显示或论文不完整,请联系qq752018766
设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©751com.cn 辣文论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。