10个数据结构课程设计例子(C语言完整源码)二叉排序树、快速排序、冒泡排序、二叉树非递归遍历、直接插入排序、直接选择排序等等

1、查找.c

/***********************************************************
我的信息:                                                  *
编程ID
***********************************************************/
#include <stdio.h>
void search(int a[],int n,int k)
{
    
    
	int i=n;
	a[0]=k;
	while(a[i]!=k)
		i--;
	if(i==0)
		printf("查找失败!\n");
	else 
		printf("数据是数组中的第%d个数\n",i);
}
void binary_search(int a[],int n,int k)
{
    
    
	int low,mid,high;
	int time=0;
	low=0;
	high=n-1;
	while(low<=high)
	{
    
    
		mid=(low+high)/2;
		time=time+1;
		if(a[mid]==k)
		{
    
    
			printf("数据是数组中的第%d个数\n",mid);
			printf("查找次数为%d次\n",time);
			break;
		}
		else if(a[mid]<k)
			low=mid+1;
		else 
			high=mid-1;
	}
}
void main()
{
    
    
	int a[100];
	int i,key,n;
	printf("the length of number:");
	scanf("%d",&n);
	for(i=1;i<=n;i++)
		scanf("%d",&a[i]);
	printf("输入要查找的数据:");
	scanf("%d",&key);
	binary_search(a,n,key); 
	search(a,n,key);  
}

2、二叉排序树.c

/***********************************************************
编程ID
***********************************************************/
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#define MAX 500
typedef struct Bnode
{
    
    
	int key;
	struct Bnode *left;
	struct Bnode *right;
}Bnode;
Bnode *btlnsert(int x,Bnode *root)
//root为二叉排排序树的根指针,x为新节点的关键字值
{
    
    
	Bnode *p,*q;
	int flag=0;//是否完成插入的标志
	p=(Bnode *)malloc(sizeof(Bnode));
	p->key=x;//为新节点关键字赋值
	p->right=NULL;//新节点要作为叶子结点插入
	p->left=NULL;
	if(root==NULL)
	{
    
    
		root=p;
		return p;
	}
	q=root;
	while(flag==0)//标志完成插入
	{
    
    
		if(q->key>x)
		{
    
    
			if(q->left!=NULL)
				q=q->left;
			else
			{
    
    
				q->left=p;//在左子数插入
				flag=1;
			}
		}
		else
		{
    
    
			if(q->right!=NULL)
				q=q->right;
			else
			{
    
    
				q->right=p;//在右子树插入
				flag=1;
			}
		}
	}
	return root;
}
void Inorder(struct Bnode *BD)
{
    
    
	if(BD!=NULL)
	{
    
    
		Inorder(BD->left);
		printf("%5d", BD->key);
		Inorder(BD->right);
	}

}
void main()
{
    
    
	int i,length;
	int a[MAX];
	Bnode *root=NULL;
	printf("输入数组大小:");
	scanf("%d",&length);
	for(i=0;i<length;i++)
	{
    
    
		scanf("%d",&a[i]);
		root=btlnsert(a[i],root);
	}
	printf("输出所给排序为:\n");
	Inorder(root);
}

3、二叉树层次遍历.c

/***********************************************************
我的信息:                                                  *
编程ID
***********************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#define MS 50
struct BTreeNode
{
    
    
	char date;
	struct BTreeNode *lchild;
	struct BTreeNode *rchild;
};
typedef struct BTreeNode TNODE;
TNODE *creat(int n)
{
    
    
	int i,j;
	char x;
	TNODE *narr[100],*p,*t;
	for(j=1;j<=n;j++)
	{
    
    
		printf("input i,x:\n");
		scanf("%d,%c",&i,&x);
		p=(TNODE*)malloc(sizeof(TNODE));
		p->date=x;
		p->lchild=NULL;
		p->rchild=NULL;
		narr[i]=p;
		if(i==1)
			t=p;
		else
		{
    
    
			if(i%2==0)
				narr[i/2]->lchild=p;
			else 
				narr[i/2]->rchild=p;
		}
	}
	return(t);
}
void Inorder(struct BTreeNode *BT)
{
    
    
	if(BT!=NULL)
	{
    
    	
		Inorder(BT->lchild);
		printf("%5c", BT->date);
		Inorder(BT->rchild);
	}

}
void levelerder(struct BTreeNode *BT )
{
    
    
	struct BTreeNode *q[MS];
	int front=0,rear=0;
	if(BT!=NULL)
	{
    
    
		rear=(rear+1)%MS;
		q[rear]=BT;
	}
	while(front!=rear)
	{
    
    
		struct BTreeNode *p;
		front=(front+1)%MS;
		p=q[front];
		printf("%5c",p->date);
		if(p->lchild!=NULL)
		{
    
    
			rear=(rear+1)%MS;
			q[rear]=p->lchild;
		}
		if(p->rchild!=NULL)
		{
    
    
			rear=(rear+1)%MS;
			q[rear]=p->rchild;
		}
	}
}
void main()
{
    
    
	TNODE *t;
	int a;
	printf("input the number of BTreeNode\n");
	scanf("%d",&a);
	t=creat(a);
	Inorder(t);
	levelerder(t);
}

4、二叉树非递归遍历.c

/***********************************************************
我的信息:                                                  *
编程ID
***********************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#define MS 50
struct BTreeNode
{
    
    
	char date;
	struct BTreeNode *lchild;
	struct BTreeNode *rchild;
};
typedef struct BTreeNode TNODE;
TNODE *creat(int n)
{
    
    
	int i,j;
	char x;
	TNODE *narr[100],*p,*t;
	for(j=1;j<=n;j++)
	{
    
    
		printf("input i,x:\n");
		scanf("%d,%c",&i,&x);
		p=(TNODE*)malloc(sizeof(TNODE));
		p->date=x;
		p->lchild=NULL;
		p->rchild=NULL;
		narr[i]=p;
		if(i==1)
			t=p;
		else
		{
    
    
			if(i%2==0)
				narr[i/2]->lchild=p;
			else 
				narr[i/2]->rchild=p;
		}
	}
	return(t);
}
void Preorder(struct BTreeNode *BT)
{
    
    
	if(BT!=NULL)
	{
    
    	
		printf("%5c", BT->date);
		Preorder(BT->lchild);
		Preorder(BT->rchild);
	}

}
void Inorder(struct BTreeNode *BT)
{
    
    
	if(BT!=NULL)
	{
    
    	
		Inorder(BT->lchild);
		printf("%5c", BT->date);
		Inorder(BT->rchild);
	}

}
void Postorder(struct BTreeNode *BT)
{
    
    
	if(BT!=NULL)
	{
    
    	
		Postorder(BT->lchild);
		Postorder(BT->rchild);
		printf("%5c", BT->date);
	}

}
void PreorderN(struct BTreeNode *BT)
{
    
    
	struct BTreeNode *s[20];
	int top=-1;
	struct BTreeNode *p=BT;
	while(top!=-1||p!=NULL)
	{
    
    
		while(p!=NULL)
		{
    
    
			top++;
			s[top]=p;
			printf("%5c",p->date);
			p=p->lchild;
		}
		if(top!=-1)
		{
    
    
			p=s[top];
			top--;
			p=p->rchild;
		}
	}
}
void InorderN(struct BTreeNode *BT)
{
    
    
	struct BTreeNode *s[20];
	int top=-1;
	struct BTreeNode *p=BT;
	while(top!=-1||p!=NULL)
	{
    
    
		while(p!=NULL)
		{
    
    
			top++;
			s[top]=p;
			p=p->lchild;
			
		}
		if(top!=-1)
		{
    
    
			p=s[top];
			top--;
			printf("%5c",p->date);
			p=p->rchild;
		}
	}
}
void PostorderN(struct BTreeNode *BT)
{
    
    
	struct BTreeNode *s[20];
	int top=-1,flag=1;
	struct BTreeNode *p=BT,*q;
	do{
    
    
    	while(p!=NULL)
			{
    
    
				top++;
				s[top]=p;
			    p=p->lchild;
			}

		q=NULL;
		flag=1;
			while(top!=-1&&flag)
			{
    
    
				p=s[top];	
				if(p->rchild==q)
				{
    
    
					printf("%5c",p->date);	          
					top--;
					q=p;
				}
				else
				{
    
    
				    p=p->rchild;	
					flag=0;
				}	
			}
	}while(top!=-1);
}
void main()
{
    
    
	TNODE *t;
	int a;
	printf("input the number of BTreeNode\n");
	scanf("%d",&a);
	t=creat(a);
	printf("中序遍历:");
	Inorder(t);
	printf("\n");
	InorderN(t);
    printf("\n");
	printf("先序遍历:");
	Preorder(t);
	printf("\n");
	PreorderN(t);
	printf("\n");
	printf("后序遍历:");
	Postorder(t);
	printf("\n");
	PostorderN(t);
	printf("\n");
}

5、二叉树建立.c

/***********************************************************
我的信息:                                                  *
编程ID
***********************************************************/
void preorder1(bitree *root)
{
    
    
	bitree *p,*s[100];
	int top=0;
	p=root;
	while((p!=NULL)||(top>0))
	{
    
    
		while(p!=NULL)
			(cout<<p->data<<" ";
		s[++top]=p;//
		p=p->lchild;
	}
	p=s[top--];
	p=p->rchild;
}
}
void inorder1(bitree *root)
{
    
    
	bitree *p,*s[100];
	int top=0;
	p=root;
while((p!=NULL)||(top>0))
{
    
    
	while(p!=NULL)
	{
    
    
		s[++top]=p;p=p->lchild;
	}
	{
    
    
		p=s[top--];
		cout<<p->data<<"";
		p=p->rchild;
	}
}
}
void postorder1(bitree *root)
{
    
    
	bitree *p,*s1[100];
	ints2[100],top=0,b;
	p=root;
	do
	{
    
    
		while(p!=NULL)
		{
    
    
			s1[top]=p;s2[top++]=0;
			p=p->lchild;
		}
		if(top>0)
		{
    
    
			b=s2[--top];
			p=s1[top];
			if(b==0)
			{
    
    
				s1[top]=p;
				s2[top++]=1;
				p=p->rchild;
			}
			else
			{
    
    
				cout<<p->data<<" ";
				p=NULL;
			}
		}
	}while(top>0);
}
void main()
{
    
    
	bitree *root;
	root=create();
	cout<<"先序遍历的结果"<<endl;
	preorder1(root);cout<<end1;
	cout<<"中序遍历的结果"<<end1;
	inorder1(root);cout<<end1;
	cout<<"后序遍历的结果"<<end1;
	postorder1(root);cout<<end1;
}

6、快速排序.c

/***********************************************************
我的信息:                                                  *
 编程ID
***********************************************************/
#include<stdio.h>
void quicksort(int a[],int start,int end)
{
    
    
	int i,j;
	int mid;
	if(start>=end)
		return;
	i=start;
	j=end;
	mid=a[i];
	while(i<j)
	{
    
    
		while(i<j&&a[j]>mid)
			j--;
		if(i<j)
		{
    
    
			a[i]=a[j];
			i++;
		}
		while(i<j&&a[i]<=mid)
			i++;
		if(i<j)
		{
    
    
			a[j]=a[i];
			j--;
		}
	}
	a[i]=mid;
	quicksort(a,start,i-1);
	quicksort(a,i+1,end);
}
void scan(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		scanf("%d",&a[i]);
	}
}
void print(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		printf("%5d",a[i]);
	}
}
void main()
{
    
    
	int a[1000];
	int s;
	int start=1,end;
	printf("输入数组长度:");
	scanf("%d",&s);
	end=s;
	scan(a,s);
	quicksort(a,start,end);
	print(a,s);
}

7、括号匹配.c

/***********************************************************
我的信息:                                                  *
 编程ID
***********************************************************/
#include <stdio.h>
#include <stdlib.h>
#include<conio.h>
struct node
{
    
    
	char date;
	struct node *next;
};
struct node *top;
void push (char x)
{
    
    
	struct node *p;
	p=(struct node *)malloc(sizeof(struct node));
	p->date=x;
	p->next=top;
	top=p;
}
char pop()
{
    
    
	struct node *p;
	char x;
	if (top==NULL)
		printf("栈下溢错误!\n");
	p=top;
	x=p->date;
	top=top->next;
	free(p);
	return(x);
}
void main()
{
    
    
	char x,y; 
	printf("括号匹配,请输入括号:\n");
	scanf("%c",&x);
	while(x!='\n')
	{
    
    
		if(x=='('||x=='['||x=='{')
		{
    
    
			push(x);
			scanf("%c",&x);
		}	
		if(x==')'||x==']'||x=='}')
		{
    
    
			if (top==NULL)
			{
    
    
				printf("不匹配!\n");
				exit(1);
			}
			y=pop();
			if((y=='('&&x==')')||(y=='['&&x==']')||(y=='{'&&x=='}'))
			{
    
    	
			   scanf("%c",&x);
			}
			else
			{
    
    
				printf("不匹配!\n");
				exit(0);
			}
		}
		
	}
	if (top!=NULL)
	{
    
    
		printf("不匹配!\n");
		exit(1);
	}
	printf("括号匹配成功!\n");
}

8、冒泡排序.c

/***********************************************************
我的信息:                                                  *
  编程ID
***********************************************************/
#include<stdio.h>
void bsort(int a[],int n)
{
    
    
	int temp;
	int i,j,flag;
	for(j=1;j<=n-1;j++)
	{
    
    
		flag=0;
		for(i=1;i<=n-j;i++)
			if(a[i]>a[i+1])
			{
    
    
				flag=1;
				temp=a[i];
				a[i]=a[i+1];
				a[i+1]=temp;
			}
		if(flag==0)break;
	}
}
void scan(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		scanf("%d",&a[i]);
	}
}
void print(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		printf("%5d",a[i]);
	}
}
void main()
{
    
    
	int a[1000];
	int s;
	printf("输入数组长度:");
	scanf("%d",&s);
	scan(a,s);
	bsort(a,s);
	print(a,s);
}

9、直接插入排序.c

/***********************************************************
我的信息:                                                  *
  编程ID
***********************************************************/
#include<stdio.h>
void selsort(int a[],int n)
{
    
    
	int i,j;
	int temp;
	for (i=1;i<=n;i++)
	{
    
    
		temp=a[i];
		j=i-1;
		while(j>=0&&temp<a[j])
		{
    
    
			a[j+1]=a[j];
			j--;
		}
		a[j+1]=temp;
	}
}
void scan(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		scanf("%d",&a[i]);
	}
}
void print(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		printf("%5d",a[i]);
	}
}
void main()
{
    
    
	int a[1000];
	int s;
	printf("输入数组长度:");
	scanf("%d",&s);
	scan(a,s);
	selsort(a,s);
	print(a,s);
}

10、直接选择排序.c

/***********************************************************
我的信息:                                                  *
  编程ID
***********************************************************/
#include <stdio.h>
void selsort(int a[],int n)
{
    
    
	int i,j,k;
	int temp;
	for(i=1;i<=n-1;i++)
	{
    
    
		k=i;
		for (j=i+1;j<=n;j++)
			if(a[j]<a[k])
				k=j;
		if(i!=k)
		{
    
    
			temp=a[i];
			a[i]=a[k];
			a[k]=temp;
		}
	}
}
void scan(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		scanf("%d",&a[i]);
	}
}
void print(int a[],int n)
{
    
    
	int i;
	for(i=1;i<=n;i++)
	{
    
    
		printf("%5d",a[i]);
	}
}
void main()
{
    
    
	int a[1000];
	int s;
	printf("输入数组长度:");
	scanf("%d",&s);
	scan(a,s);
	selsort(a,s);
	print(a,s);
}

喜欢的点个赞再走呗!

猜你喜欢

转载自blog.csdn.net/weixin_43474701/article/details/125074337