课堂作业 - C# 中的 shellsort?
我需要一种简单的方法在 C# 中使用 ShellSort 对数组进行排序,请帮助我
i need an easy way to sort an array using ShellSort in c#, please help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用希尔排序。
Use shell sort.
没有人会为你编写代码。你是来学习的。我将采取以下步骤:
转到维基百科的希尔排序页面
查找该算法的伪代码。阅读它,直到理解它的作用。
将伪代码移植到 C#。
如果您在实施过程中遇到问题,请随时回来提出具体问题。
Nobody is going to write your code for you. You're there to learn. I'd take the following steps:
Go to Wikipedia's Shell Sort Page
Find the psuedocode for the algorithm. Read it until you understand what it does.
Port the psuedocode to C#.
If you have a problem during implementation feel free to come back and ask specific questions.