企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
<div id="div15"><h4> 15, 反转链表 <h4></div> ![](https://img.kancloud.cn/ca/3d/ca3d6af98b63902ac3511c2c60a8c060_695x155.png) ![](https://img.kancloud.cn/14/6a/146a61dc34c99f8bc47d52f162346c54_657x361.png) ```javascript /* function ListNode(x){ this.val = x; this.next = null; }*/ function ReverseList(pHead) { // write code here let pPre = null, pNext = null; while (pHead !== null) { pNext = pHead.next; pHead.next = pPre; pPre = pHead; pHead = pNext; } return pPre; } ``` ![](https://img.kancloud.cn/7c/77/7c77e62b96767b8c7f4b79541c01250d_645x275.png) ![](https://img.kancloud.cn/d0/e7/d0e78dfb9d9d215187e8a677cc973d5f_464x212.png)