漫漫云天自翱翔
漫漫云天自翱翔
全部文章
LeetCod...
oracle(1)
学习(1)
开发注意事项(1)
未归档(7)
题解(68)
归档
标签
去牛客网
登录
/
注册
Rosa.sp
坚定目标向前
全部文章
/ LeetCode刷题历程
(共9篇)
leetcode1. 两数之和
今天开始刷leetcode,先水一道未尽,不过不习惯给API编程这种方式 题目链接https://leetcode-cn.com/problems/two-sum/ class Solution { public: vector<int> twoSum(ve...
2021-07-05
0
412
leetcode2.两数相加
leetcode两数相加https://leetcode-cn.com/problems/add-two-numbers/submissions/ 此题注意分配内存不能用malloc()据说是内存对齐错误,我也不是很清楚; /** * Definition for singly-link...
2021-07-05
0
519
Leetcode3.无重复字符的最长子串
题目:给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ 题目思路:遍历一次暴力即可,用一个flag标记数组,边遍历边标记已...
2021-07-05
0
485
LeetCode14. 最长公共前缀
编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。链接https://leetcode-cn.com/problems/longest-common-prefix/ 水题,暴力即可,注意容器为空的情况 class Solution { ...
2021-07-05
0
471
LeetCode13. 罗马数字转整数
罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 字符 数值 I 1 V 5 X 10 L 50 C 100 D 50...
2021-07-05
0
437
LeetCode9. 回文数
判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。链接如下https://leetcode-cn.com/problems/palindrome-number/ 题解:按照题意不用字符串,直接反转数字,然后判断反转数与原数是否相等 注意一个边界数就好了,在这里...
2021-07-05
0
503
LeetCode7. 整数反转
给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。链接https://leetcode-cn.com/problems/reverse-integer/ 题解,直接反转,然后反转数用long long 型存着,主要对溢出数据进行处理。 //INT_MAX与INT_MIN在&...
2021-07-05
0
549
LeetCode8. 字符串转换整数 (atoi)
字符串转整数。链接:https://leetcode-cn.com/problems/string-to-integer-atoi/ 题解:模拟题 class Solution { public: int myAtoi(string str) { int flag = 0...
2021-07-05
0
456
LeetCode6. Z 字形变换
题解模拟就好了。链接:https://leetcode-cn.com/problems/zigzag-conversion/submissions/ class Solution { public: string convert(string s, int numRows) { ...
2021-07-05
0
487