zoukankan      html  css  js  c++  java
  • 插入排序(C#数据结构学习七)

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace SoloDataStructure
    {
        
    class MyInsertSort
        
    {
            
    //插入排序
            
    //这个简单不多注释
           static void InsertSort ( int[] array)
            
    {
                
    //递增排序
                 int temp; 
                 
    int i, j,n;
                 n 
    = array.Length;
               
                 
    for ( i = 1; i < n; i++ )
                  
    {
                  temp 
    = array[i];    //设置监哨
                   for ( j = i;  j > 0; j-- )  
                    
    if ( temp < array[j-1]) 
                        array[j] 
    = array[j-1];   //记录后移
                    else
                        
    break;
                     array[j] 
    = temp;    //插入array[i];
                 }

            }

            
    static void Main(string[] args)
            
    {
                
    int[] arr = new int[] 49,38,65,97,76,13,27,49};
                Console.Write(
    "原数组数据顺序:");
                
    foreach (int i in arr)
                
    {
                    Console.Write(i 
    + ".");
                }

                InsertSort(arr);
                Console.Write(
    "\n插入排序后数组数据顺序:");
                
    for (int i = 0; i<arr.Length; i++)
                    Console.Write(arr[i]
    +".");
                Console.ReadLine();

            }

        }

    }
  • 相关阅读:
    Mathematica 计算矩阵的伴随矩阵
    教你如何在word中像LaTex那样打出漂亮的数学公式
    中国科学院大学2016年硕转博考试试题
    161024解答
    161023解答
    161020-1解答
    关于查询扩展版ESI高被引论文的说明
    [Tex学习笔记]让项目编号从4开始
    [Tex学习]WinEdit 常用软件快捷键
    最著名的数学家一般也是最著名的力学家
  • 原文地址:https://www.cnblogs.com/solo/p/609673.html
Copyright © 2011-2022 走看看