【怎么下载asp源码】【android蓝牙助手源码】【python set函数 源码】数据结构 算法源码_数据结构算法源码

2024-11-08 03:45:56 来源:gin源码解读 分类:百科

1.数据结构:编写一个算法实现输出链栈中的数据算法数据算法所有元素(假设栈中元素的类型为char)
2.数据结构 算法
3.用C语言实现数据结构中常用算法,如对链表的结构结构操作、查找、源码源码排序等。数据算法数据算法怎么下载asp源码

数据结构 算法源码_数据结构算法源码

数据结构:编写一个算法实现输出链栈中的结构结构所有元素(假设栈中元素的类型为char)

       #include<stdio.h>

       #include<stdlib.h>

       struct node{

       int data;

       struct node* pre;

       };

       void print(struct node *p) //打印链栈

       { while(p)

       { printf("%d ",p->data);

        p=p->pre;

       }

       }

       int main()

       { int i;

        struct node *p,*q;

        for(i=1;i<;i++) //1~依次入栈

        { p=(struct node*)malloc(sizeof(struct node));

         if(i==1)p->pre=NULL;

           else p->pre=q;

        p->data=i;

        q=p;

        }

        print(p);

        return 0;

       }

数据结构 算法

       用队列做吧,不过这个队列并非先入先出,源码源码android蓝牙助手源码需要改下队列策略,数据算法数据算法即后压入队列的结构结构数字可以插入到队列中的某个位置。这个要写程序并不难,源码源码不过没时间写那么多代码了。数据算法数据算法

       算法如下:

       (1) 数1在序列中

       第一步:将1放入队列

       (*) 求有序的结构结构数列中前n个数

       第二步:进如队列循环,条件是源码源码取出来的数的个数没有超出n

       (2) 若x在序列中,则2x,数据算法数据算法python set函数 源码3x,结构结构5x也在序列中

       (3) 除此之外,源码源码序列中无其它数

       第三步:实现循环体:1.取队头结点x,地方棋牌源码出售并输出。

        2.压入2x,3x和5x,thinkphp读取网页源码此处需要依据队列中的情况进行排序,并且若有相等的

        则不插入队列

        3.计数加1继续循环

用C语言实现数据结构中常用算法,如对链表的操作、查找、排序等。

       调试过的

       没什么大的毛病

       #include <stdio.h>

       #include <stdlib.h>

       #include <iostream>

       typedef int ElemType;

       typedef struct LNode {

       ElemType date;

       struct LNode *next;

       }linklist,*link;

        /*构造链表*//////////////////////////////////////

       void IinitList(link &L)

       {

       if(L)delete L;

       L= (link)malloc(sizeof(LNode)) ;

       if (!L) exit(1);

       L->next=NULL;

       cout<<"链表已经建立\n";

       }

        //////////////////////////////////////////////////////

       // /*删除结点*/// //////////////////////////////////////////////

       int listdelete(link &L,int i,ElemType &e)

       {

       link p,q; int j;

       p=L;j=0;

       while(p->next&&j<i-1)

       {

       p=p->next;++j;

       }

       q=p->next;

       p->next=q->next;

       e=q->date;free(q);

       cout<<"链表已经删除\n";

       return 1;

       }

        ////////////////////////////////////////////// /////////

        // /*插入结点*/////////////// ///////////////////////

       int listinsert(link &L,int i,ElemType e)

       {

       link p,q;

       int j;

       p=L;j=0;

       while(p&&j<i-1)

       {

       p=p->next;++j;

       }

       q= (link)malloc(sizeof(LNode));

       q->date=e;

       q->next=p->next;

       p->next=q; cout<<"链表已经插入\n";

       return 1;

       }

       /////////////////////////////////////////////////////

        ////*显示数据*///////// ////////////////////////////////

       void show(link l)

       { link p; int j;

       p=l;j=0;

       cout<<"链表的值为:\n";

       while(p->next)

       {

       cout<<p->next->date<<endl;

       p=p->next;

       }

       }

       //////////////////////// /////////////////////////////////

        //////销毁链表////// ////////////////////////////////////////

       void destorylinst(link &L)

       {

       while(L)

       { link p=L;

       L=L->next;

       free(p) ;

       }

       L=NULL;

       }

       ////// 打印表头///////////////////////////////////////

       void print()

       {

       cout<<"------------------------\n";

       cout<<"------------------------\n";

       }

        ////////////////////////////////////////////////////////

        ///////////////////////////////////////////////////////

        ////查找结点//// ////////////////////////////////////////

       void lookfor(link l,int e)

       {

       if(l==NULL)

       cout<<"链表未建立,请先构造链表\n" ;

       else{

       link p; int i=0,j=0;

       p=l->next;

       cout<<"你查找值的位置是:\n " ;

       while(p)

       { if(p->date==e)

       { j++;

       cout<<i+1<<endl;

       }

       p=p->next; i++;

       }cout<<"查找完毕\n";

       if(j==0)

       cout<<"你查找的值不在链表中 、\n";

       } }

       void putline(link &l)

       {

       if(l==NULL ||l->next==NULL )

       cout<<"链表未建立或是空的,请先构造链表\n" ;

       else{

        link p,q;

       p=l->next;

       while(p!=NULL)

       {

        q=p->next;

        while(q!=NULL)

        {

        if(p->date>q->date)

        { ElemType t;

        t=p->date;

        p->date=q->date;

        q->date=t;

        }

        q=q->next;

        }

        p=p->next;

        } cout<<"链表已经排序 \n";

       }

       }

       /////////////////////////////// //////////////////

        ///////////////////////////////////////////////////

        //////测试函数///// /////////////////////

       void main()

       { link L=NULL; int k;

       while(1)

       {

       cout<<"按0退出\n"<<"按1建立\n"<<"按2插入\n"<<"按3删除\n"

       <<"按4清空链表\n"<<"按5查找\n"<<"按6进行排续\n" ;

       print();

       int a,i,j;

       cin>>a;

       switch(a)

       { case 0: if(L!=NULL)

       destorylinst(L) ;

       exit(1);

       case 1:

       IinitList(L);

       k=0;

       print();

       show(L) ;

       cout<<"空的链表\n";

       cout<<"链表长度为: "<<k<<endl;

       print();

       cout<<"是否要给链表插入值:y----n\n";

       char yy;

       yy=getchar();

       if(yy=='y')

       {

       cout<<"请输入值!按回车键后输入下一个,输入0再按回车结束\n";

       int bb;

       cin>>bb;

       while(bb!=0)

       { k++;

       listinsert(L,k,bb) ;

       cin>>bb;

       }

       print();

       show(L) ; cout<<"链表长度为: "<<k<<endl;

       }

       else break;

       print();

       break;

       case 2:

       if(L!=NULL)

       {

       cout<<"输入位置:\n";

       cin>>i;

       while(i>k+1 || i<1)

       {

       cout<<"位置错误,重新输入插入位置\n" ;

       cin>>i;

       }

       cout<<"输入植;\n";

       cin>>j;

       listinsert(L,i,j) ;

       k++;

       print();

       show(L);

       cout<<"链表长度为:"<<k<<endl;

       print();

       }

       else

       { cout<<"链表不存在,请先建链表\n";

       print(); }

       break;

       case 3:

       if(L!=NULL)

       {

       cout<<"输入位置:\n";

       cin>>i;

       while(i>k || i<1)

       {

       cout<<"位置错误,重新输入删除位置\n" ;

       cin>>i;

       }

       listdelete (L,i,j);

       cout<<"你删除的是:\n";

       cout<<j<<endl ;

       k--; print();

       show(L);

       cout<<"链表长度为:"<<k<<endl;

       print();

       }

       else {

       cout<<"链表不存在,请先建链表\n";

       print();

       }

       break;

       case 4:

       destorylinst(L) ;

       cout<<"链表已经清空\n";

       print();

       break;

       case 5:

       print();

       cout<<"输入要查找的值;\n";

       int z;

       cin>>z;

       lookfor(L,z);

       print();

       break;

        case 6:

       putline(L);

       if(L!=NULL)

       show(L);

       print();

       break;

       default:

       break ;

       }

       }

       delete L;

       }

本文地址:http://5o.net.cn/html/1d52999469.html 欢迎转发