llllmz

导航

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 35 下一页

2024年3月15日

131. 分割回文串c

摘要: /** * Return an array of arrays of size *returnSize. * The sizes of the arrays are returned as *returnColumnSizes array. * Note: Both returned array a 阅读全文

posted @ 2024-03-15 16:39 神奇的萝卜丝 阅读(13) 评论(0) 推荐(0)

40. 组合总和 IIc

摘要: /** * Return an array of arrays of size *returnSize. * The sizes of the arrays are returned as *returnColumnSizes array. * Note: Both returned array a 阅读全文

posted @ 2024-03-15 15:54 神奇的萝卜丝 阅读(11) 评论(0) 推荐(0)

39. 组合总和c

摘要: 脑残了,参数传错了,debug了半天。 /** * Return an array of arrays of size *returnSize. * The sizes of the arrays are returned as *returnColumnSizes array. * Note: B 阅读全文

posted @ 2024-03-15 15:35 神奇的萝卜丝 阅读(14) 评论(0) 推荐(0)

17. 电话号码的字母组合c

摘要: /** * Note: The returned array must be malloced, assume caller calls free(). */ char c[10][10]={" "," ","abc\0","def\0","ghi\0","jkl\0","mno\0","pqrs\ 阅读全文

posted @ 2024-03-15 14:46 神奇的萝卜丝 阅读(33) 评论(0) 推荐(0)

77. 组合c

摘要: /** * Return an array of arrays of size *returnSize. * The sizes of the arrays are returned as *returnColumnSizes array. * Note: Both returned array a 阅读全文

posted @ 2024-03-15 14:01 神奇的萝卜丝 阅读(16) 评论(0) 推荐(0)

108. 将有序数组转换为二叉搜索树c

摘要: /** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ struct TreeNode* bu 阅读全文

posted @ 2024-03-15 13:35 神奇的萝卜丝 阅读(20) 评论(0) 推荐(0)

669. 修剪二叉搜索树c

摘要: /** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ struct TreeNode* tr 阅读全文

posted @ 2024-03-15 13:03 神奇的萝卜丝 阅读(19) 评论(0) 推荐(0)

2024年3月14日

450. 删除二叉搜索树中的节点c

摘要: /** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ struct TreeNode* le 阅读全文

posted @ 2024-03-14 19:39 神奇的萝卜丝 阅读(18) 评论(0) 推荐(0)

236. 二叉树的最近公共祖先c

摘要: /** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ struct TreeNode* lo 阅读全文

posted @ 2024-03-14 19:23 神奇的萝卜丝 阅读(9) 评论(0) 推荐(0)

501. 二叉搜索树中的众数c

摘要: /** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ /** * Note: The ret 阅读全文

posted @ 2024-03-14 16:12 神奇的萝卜丝 阅读(15) 评论(0) 推荐(0)

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 35 下一页