QuickSort C# .NET剖析

开发 后端
这里介绍QuickSort C# .NET,本文旨在帮助您用 Visual Studio 构建一个简单的 C# 项目。它无法进行全面的介绍。我们鼓励您查询关于 C# 和 .NET 的其他资源,以便更多地学习这些技术。

本文向大家介绍QuickSort C# .NET,可能好多人还不知道QuickSort C# .NET,没有关系,看完本文你肯定有不少收获,希望本文能教会你更多东西。

本文旨在帮助您用 Visual Studio 构建一个简单的 C# 项目。它无法进行全面的介绍。我们鼓励您查询关于 C# 和 .NET 的其他资源,以便更多地学习这些技术。在完成本教程之后,您至少有了一个可用的项目,在您研究 Visual C# 时,可以从修改此这些代码开始。

下面是 QuickSort C# .NET 示例应用程序的完整源代码。您可以复制、使用和分发这些代码(无版权费)。注意,这些源代码以"原样"提供并且不作任何保证。

  1. //QuickSort C# .NET Sample Application  
  2. //Copyright 2001-2002 Microsoft Corporation. All rights reserved.  
  3. //  
  4. //MSDN ACADEMIC ALLIANCE [http://www.msdn.microsoft.com/academic]  
  5. //This sample is part of a vast collection of resources we developed for  
  6. //faculty members in K-12 and higher education. Visit the MSDN AA web site for more!  
  7. //The source code is provided "as is" without warranty.  
  8. //  
  9. // Import namespaces  
  10. using System;  
  11. using System.Collections;  
  12. using System.IO;  
  13. // Declare namespace  
  14. namespace MsdnAA  
  15. {  
  16. // Declare application class  
  17. class QuickSortApp  
  18. {  
  19. // Application initialization  
  20. static void Main (string[] szArgs)  
  21. {  
  22. // Print startup banner  
  23. Console.WriteLine ("\nQuickSort C#.NET Sample Application");  
  24. Console.WriteLine ("Copyright (c)2001-2002 Microsoft Corporation. All rights reserved.\n");  
  25. Console.WriteLine ("MSDN ACADEMIC ALLIANCE [http://www.msdnaa.net/]\n");  
  26. // Describe program function  
  27. Console.WriteLine ("This example demonstrates the QuickSort algorithm by reading an input file,");  
  28. Console.WriteLine ("sorting its contents, and writing them to a new file.\n");  
  29. // Prompt user for filenames  
  30. Console.Write ("Source: ");  
  31. string szSrcFile = Console.ReadLine ();  
  32. Console.Write ("Output: ");  
  33. string szDestFile = Console.ReadLine ();  
  34. // Read contents of source file  
  35. string szSrcLine;  
  36. ArrayList szContents = new ArrayList ();  
  37. FileStream fsInput = new FileStream (szSrcFile, FileMode.Open, FileAccess.Read);  
  38. StreamReader srInput = new StreamReader (fsInput);  
  39. while ((szSrcLine = srInput.ReadLine ()) != null)  
  40. {  
  41. // Append to array  
  42. szContents.Add (szSrcLine);  
  43. }  
  44. srInput.Close ();  
  45. fsInput.Close ();  
  46. // Pass to QuickSort function  
  47. QuickSort (szContents, 0, szContents.Count - 1);  
  48. // Write sorted lines  
  49. FileStream fsOutput = new FileStream (szDestFile, FileMode.Create, FileAccess.Write);  
  50. StreamWriter srOutput = new StreamWriter (fsOutput);  
  51. for (int nIndex = 0; nIndex < szContents.Count; nIndex++)  
  52. {  
  53. // Write line to output file  
  54. srOutput.WriteLine (szContents[nIndex]);  
  55. }  
  56. srOutput.Close ();  
  57. fsOutput.Close ();  
  58. // Report program success  
  59. Console.WriteLine ("\nThe sorted lines have been written to the output file.\n\n");  
  60. }  
  61. // QuickSort implementation  
  62. private static void QuickSort (ArrayList szArray, int nLower, int nUpper)  
  63. {  
  64. // Check for non-base case  
  65. if (nLower < nUpper)  
  66. {  
  67. // Split and sort partitions  
  68. int nSplit = Partition (szArray, nLower, nUpper);  
  69. QuickSort (szArray, nLower, nSplit - 1);  
  70. QuickSort (szArray, nSplit + 1, nUpper);  
  71. }  
  72. }  
  73. // QuickSort partition implementation  
  74. private static int Partition (ArrayList szArray, int nLower, int nUpper)  
  75. {  
  76. // Pivot with first element  
  77. int nLeft = nLower + 1;  
  78. string szPivot = (string) szArray[nLower];  
  79. int nRight = nUpper;  
  80. // Partition array elements  
  81. string szSwap;  
  82. while (nLeft <= nRight)  
  83. {  
  84. // Find item out of place  
  85. while (nLeft <= nRight && ((string) szArray[nLeft]).CompareTo (szPivot) <= 0)  
  86. nLeftnLeft = nLeft + 1;  
  87. while (nLeft <= nRight && ((string) szArray[nRight]).CompareTo (szPivot) > 0)  
  88. nRightnRight = nRight - 1;  
  89. // Swap values if necessary  
  90. if (nLeft < nRight)  
  91. {  
  92. szSwap = (string) szArray[nLeft];  
  93. szArray[nLeft] = szArray[nRight];  
  94. szArray[nRight] = szSwap;  
  95. nLeftnLeft = nLeft + 1;  
  96. nRightnRight = nRight - 1;  
  97. }  
  98. }  
  99. // Move pivot element  
  100. szSwap = (string) szArray[nLower];  
  101. szArray[nLower] = szArray[nRight];  
  102. szArray[nRight] = szSwap;  
  103. return nRight;  
  104. }  
  105. }  

关于 QuickSort C# .NET为了演示 QuickSort Visual C# .NET 示例应用程序实际是如何运行的,我们提供了编译好的可执行文件。您可以通过编译这些项目文件来创建自己的可执行文件。单击 Quicksort_Visual_CSharp_.NET.exe,下载源代码项目文件和可执行文件包。

使用应用程序启动 Command Prompt(从"开始"菜单运行"cmd.exe")。使用 CD 命令将目录更改为可执行文件所在的目录。然后运行"quicksort.exe".

程序将提示您提供输入和输出文件的名称。任何包含多行的文本文件均可使用。如果需要,可以使用记事本来创建一个此类文件。然后,该程序将对输入文件的内容进行排序,并且将其写入输出文件。

示例程序输出下面是来自此 QuickSort C# .NET 应用程序的一个实例的输出。此示例演示了 QuickSort 算法,方法是读取输入文件、对文件的内容进行排序,然后将其写入新的文件。

【编辑推荐】

  1. C# 3.0编译器简单介绍
  2. C#使用函数重载学习笔记
  3. Visual C#对数据库处理概述
  4. C#具有隐式类型声明描述
  5. C#使用SharpZipLib分析
责任编辑:佚名 来源: 博客园
相关推荐

2009-08-27 17:14:36

C# Socket

2009-09-07 14:29:52

C# ServiceC

2009-10-21 10:45:50

VB.NET Quic

2009-09-11 11:09:36

C#引用类型

2009-09-02 18:14:33

C# WebClien

2009-09-01 11:04:59

C#调用扩展方法

2009-09-11 11:17:04

C#引用类型

2009-08-27 16:29:18

C#动态编译

2009-08-27 17:51:34

C#匿名方法

2009-08-31 17:26:32

C#异常处理

2009-09-03 16:58:49

C#内存管理

2009-08-28 10:44:46

C#字符数组转换

2009-09-18 10:00:17

C#数组操作

2009-09-02 13:36:58

C#实现多个接口

2009-08-28 11:16:51

C#日期型数

2009-09-04 17:56:22

C#删除数据

2009-08-28 15:32:39

C#利用WMI获取数据

2009-08-31 15:39:11

C#编写操作TreeV

2009-09-09 14:04:18

C# XML解析XML解析方法

2009-09-02 17:14:28

C#修饰符
点赞
收藏

51CTO技术栈公众号