叫什么都行呀
叫什么都行呀
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
叫什么都行呀的博客
全部文章
(共32篇)
题解 | #比较版本号#
int compare(char* version1, char* version2 ) { // write code here &nb...
C
字符串
2022-09-26
0
286
题解 | #数组中的逆序对#
int InversePairs(int* data, int dataLen ) { // write code here ...
C
数组
计数
递归
归并排序
2022-09-26
0
250
题解 | #二分查找-I#
int search(int* nums, int numsLen, int target ) { // write code here &n...
C
数组
二分查找
2022-09-10
6
924
题解 | #删除有序链表中重复的元素-II#
struct ListNode* deleteDuplicates(struct ListNode* head ) { // write code here &n...
C
链表
2022-09-07
0
265
题解 | #链表的奇偶重排#
struct ListNode* oddEvenList(struct ListNode* head ) { // write code here &...
C
链表
2022-09-07
0
271
题解 | #判断一个链表是否为回文结构#
bool isPail(struct ListNode* head ) { // write code here if(he...
C
链表
2022-09-07
4
351
题解 | #删除有序链表中重复的元素-I#
struct ListNode* deleteDuplicates(struct ListNode* head ) { // write code here &n...
C
链表
双指针
2022-09-06
1
302
题解 | #链表相加(二)#
struct ListNode* ReverseList(struct ListNode* head) { if(head==NULL || head->next==NULL) &nbs...
C
链表
2022-09-05
0
261
题解 | #链表中环的入口结点#
class Solution: def EntryNodeOfLoop(self, pHead): # write&...
Python3
哈希函数
2022-09-02
0
222
题解 | #合并k个已排序的链表#
class Solution: def mergeKLists(self , lists: List[ListNode]) -> ListNode: &...
Python3
递归
2022-09-02
0
389
首页
上一页
1
2
3
4
下一页
末页