1 Star 0 Fork 0

moewang/LeetCode_EveryDay

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
86.分隔链表.js 791 Bytes
一键复制 编辑 原始数据 按行查看 历史
moewang 提交于 2021-01-03 17:55 . 分隔链表js-2021-01-03
/*
* @lc app=leetcode.cn id=86 lang=javascript
*
* [86] 分隔链表
*/
// @lc code=start
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} head
* @param {number} x
* @return {ListNode}
*/
var partition = function(head, x) {
var small = new ListNode(0)
var large = new ListNode(0)
const smallHead = small
const largeHead = large
while(head !== null) {
if(head.val < x) {
small.next = head
small = small.next
} else {
large.next = head
large = large.next
}
head = head.next
}
large.next = null
small.next = largeHead.next
return smallHead.next
};
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/moewang0321/LeetCode_EveryDay.git
git@gitee.com:moewang0321/LeetCode_EveryDay.git
moewang0321
LeetCode_EveryDay
LeetCode_EveryDay
master

搜索帮助