摘要: 利用递归的回路进行比对。 C: #include "stdbool.h" #include <string.h> struct ListNode { int val; struct ListNode *next; }; struct ListNode *rightNode; bool isPal(s 阅读全文
posted @ 2022-03-09 14:04 牛有肉 阅读(17) 评论(0) 推荐(0) 编辑
摘要: C: void insert(int *B, int size, int val) { if (size == 1) B[0] = val; else { for (int i = 1; i < size; i++) { if (val <= B[i]) { B[i - 1] = val; retu 阅读全文
posted @ 2022-03-09 10:44 牛有肉 阅读(20) 评论(0) 推荐(0) 编辑