叫什么都行呀
叫什么都行呀
全部文章
分类
归档
标签
去牛客网
登录
/
注册
叫什么都行呀的博客
全部文章
(共28篇)
题解 | #链表的奇偶重排#
struct ListNode* oddEvenList(struct ListNode* head ) { // write code here &...
C
链表
2022-09-07
0
245
题解 | #判断一个链表是否为回文结构#
bool isPail(struct ListNode* head ) { // write code here if(he...
C
链表
2022-09-07
4
331
题解 | #删除有序链表中重复的元素-I#
struct ListNode* deleteDuplicates(struct ListNode* head ) { // write code here &n...
C
链表
双指针
2022-09-06
1
278
题解 | #链表相加(二)#
struct ListNode* ReverseList(struct ListNode* head) { if(head==NULL || head->next==NULL) &nbs...
C
链表
2022-09-05
0
243
题解 | #链表中环的入口结点#
class Solution: def EntryNodeOfLoop(self, pHead): # write&...
Python3
哈希函数
2022-09-02
0
195
题解 | #合并k个已排序的链表#
class Solution: def mergeKLists(self , lists: List[ListNode]) -> ListNode: &...
Python3
递归
2022-09-02
0
378
题解 | #合并两个排序的链表#
class Solution: def Merge(self , pHead1: ListNode, pHead2: ListNode) -> ListNo...
Python3
链表
2022-09-02
0
246
题解 | #毕业生就业调查#
survey_list=['Niumei','Niu Ke Le','GURR','LOLO'] result_dict={'Niumei': 'Nowcoder','GURR': 'HUAWEI'} for name in survey_list: if result_...
Python3
2022-08-26
0
210
首页
上一页
1
2
3
下一页
末页