【无标题】

【无标题】_第1张图片

 【无标题】_第2张图片

 

#!/bin/bash 
uid=`id | cut -d "=" -f 2 | cut -d "(" -f 1`
gid=`id | cut -d "=" -f 3 | cut -d "(" -f 1`
echo "uid="$uid
echo "gid="$gid

 

#include
void bubble(int arr[],int n);
void selectl(int arr[],int n);
void fast(int arr[],int low,int higt);
int p_sort(int arr[],int low,int higt);
void output(int arr[],int n);
int main(int argc, const char *argv[])
{
	int n;
	printf("请输入数组长度:");
	scanf("%d",&n);
	while(getchar()!=10);
	int arr[n];
	for(int i=0;iarr[j+1])
			{
				int temp=arr[j];
				arr[j]=arr[j+1];
				arr[j+1]=temp;
			}		
		}	
	}



}
void selectl(int arr[],int n)
{
	for(int i=0;iarr[j])
			{
				a=j;
			}	
		}
		if(a!=i)
		{
			int temp=arr[i];
			arr[i]=arr[a];
			arr[a]=temp;
		}
	}
}
void fast(int arr[],int low,int higt)
{
	if(low>=higt)
	{
		return;
	}

	int mid=p_sort(arr,low,higt);
	fast(arr,low,mid-1);
	fast(arr,mid+1,higt);
}
int p_sort(int arr[],int low,int higt)
{
	int key=arr[low];
	while(low=arr[low])
		{
			low++;
		}
		arr[higt]=arr[low];
	}
	arr[low]=key;
	return low;
}
void output(int arr[],int n)
{
	for(int i=0;i

【无标题】_第3张图片

 

你可能感兴趣的:(c语言,命令模式)