摘要: Mybatis基本操作 根据id查询 <select id="findById" resultType="com.itheima.domain.User" parameterType="int"> select * from user where id = #{uid} </select> 在持久层 阅读全文
posted @ 2021-10-20 19:38 只会CrtlCV咋办 阅读(30) 评论(0) 推荐(0)
摘要: 链表反转 public class Solution { public ListNode ReverseList(ListNode head) { if (head == null) { return null; } ListNode second = head.next; head.next = 阅读全文
posted @ 2021-10-20 18:58 只会CrtlCV咋办 阅读(38) 评论(0) 推荐(0)