数组的操作处理与数组元素的冒泡排序 (转)

数组的操作处理与数组元素的冒泡排序 (转)[@more@]

//(1)查找数组元素

static void Main(string[] args)
{
  // TODO: 查找数组元素
  int[] a= new int[100];
  Console.WriteLine("输入数字");
  string s=Console.ReadLine();

  int x=Int32.Parse(s);
  Console.WriteLine("n 输入int数组元素 n");

  for(int i=0;i  {
  string s1=Console.ReadLine();
  a[i]=Int32.Parse(s1);
  }

  Console.WriteLine("搜查元素n");
  string s3=Console.ReadLine();
  int x2=Int32.Parse(s3);
  //循环部分数组
  for(int i=0;i  {
  if(a[i]==x2)
  {
 Console.WriteLine("Search successful");
 Console.WriteLine("Element {0} found at location {1}n",x2,i+1);
  Console.ReadLine ();
 return;
  }
  }
}
---------------------------------------
//(2)查找数组元素中最大和最小的元素


static void Main(string[] args)
{
  // TODO: 找出最大和最小的元素
  int n;
  float large,small;
  int[] a = new int[50];
  Console.WriteLine("输入int数组大小");
  string s= Console.ReadLine();
  n=Int32.Parse(s);
  Console.WriteLine("输入数组元素");
  for(int i=0;i  {
 string s1=Console.ReadLine();
 a[i]=Int32.Parse(s1);
  }
  large =a[0];
  small= a[0];
  for(int i=1;i  {
 if(a[i]>large)
 large=a[i]; //更新large变量
 else if(a[i] small=a[i]; //更新small变量
  }
  Console.WriteLine("Largest element in the array is {0}",large);
  Console.WriteLine("Smallest element in the array is {0}",small);
  Console.ReadLine ();//暂停
}


----------------------------------------------
//数组元素的冒泡排序

/*
第一遍使最轻的记录上升到数组的最顶端,
第二遍使剩下的最小的上升到第二位置,
第二遍扫描时不必再比较最顶端的记录
*/

static void Main(string[] args)
{
  int[] a= new int[100];
  Console.WriteLine("输入int数组里的元素数目");
  string s=Console.ReadLine();
  int x=Int32.Parse(s);

  Console.WriteLine("输入元素");
  for(int j=0;j  {
 string s1=Console.ReadLine();
 a[j]=Int32.Parse(s1);
  }

  int limit= x-1;
  for(int pass=0;pass  {
 for(int j=0;j {
  if(a[j]>a[j+1])
  {
  int k=a[j]; //数组元素交换
  a[j]=a[j+1]; //数组元素交换
  a[j+1]=k; //数组元素交换
  }
 }
  }

  Console.WriteLine("Sorted elements of an array are(冒泡排序)");

  for (int j=0;j  {
  Console.WriteLine(a[j]);
  }
  Console.ReadLine ();
}

---------------------------------------


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10752043/viewspace-993433/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/10752043/viewspace-993433/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值