递归插入排序列表
假设整数已按升序排序,如何插入到已排序的数组中。有人告诉我使用二分搜索,但这只会返回元素的位置。
伪代码的一个例子是 grate。
How would you insert into a sorted array assuming the integers has been sorted into ascending order. I was told to use binary search, but that would only return the position of the element.
A example in pseudo-code would be grate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您使用静态数组,例如无链表
以下是一种处理字符串数组的方法,您可以根据您的要求进行自定义
// 创建具有有序项目列表的数组
String[]sortedArray = new String[]{"蚂蚁", "蝙蝠", "猫", "狗"};
请参阅http://www.exampledepot.com/egs/java.util/coll_InsertInArray。 html
Assuming that you are using static array e.g. no linked list
Following is a way to do with string array you can customize as per your requirement
// Create anarray with an ordered list of items
String[] sortedArray = new String[]{"ant", "bat", "cat", "dog"};
refer http://www.exampledepot.com/egs/java.util/coll_InsertInArray.html