leetcode:Merge Two Sorted Lists;链表是从升序还是倒序排序?
Merge Two Sorted Lists
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
https://leetcode.com/problems...
我看这道题有一个测试用例,输入([2],[1])输出(1,2)
说明是升序,但是题目只是说列表是sorted的,没说明一定是升序吧,还是我有什么地方看漏了?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般默认升序。