- 博客(3)
- 收藏
- 关注
原创 leetcode 第3题【无重复字符的最长子串】C语言
leetcode 第3题【无重复字符的最长子串】int lengthOfLongestSubstring(char * s){ char *tail = s, *head = s; /*头指针尾指针先指向第一个字符*/ int max = 0; /*储存长度的最大值*/ while (*tail) /*判断是否一开始就为空或者遍历结束*/ { for (char *cur = head; cur < tail; cur++)
2021-11-04 18:51:17 295
原创 leetcode 第2题【两数相加】C语言
leetcode 第2题【两数相加】/** * Definition for singly-linked list. * struct ListNode { * int val; * struct ListNode *next; * }; */struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2) { int t=0; /*储存进位数*/ struct ListNode
2021-11-03 19:42:51 554
原创 leetcode 第1题【两数之和】C语言
leetcode 第1题【两数之和】今天开始刷 leetcode 了,希望可以坚持每天一题因为不太会编程,只是想记录下来,若有错误,欢迎指正。/** * Note: The returned array must be malloced, assume caller calls free(). */int* twoSum(int* nums, int numsSize, int target, int* returnSize) /*定义一个指针函数towSum,最后返回值为指针*/{
2021-11-03 16:18:34 681
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人