Dogemeat
Dogemeat
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
Dogemeat的博客
全部文章
(共3篇)
题解 | #翻转单词序列#
class Solution { public: string ReverseSentence(string str) { //用ss把每个单词压入数组 if(str.length() <= 1) return str; vector&l...
C++
2021-10-05
0
334
题解 | #合并两个排序的链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public...
C++
2021-09-28
46
906
题解 | #二进制中1的个数#
不管右移后前面补的是什么,只跟1比较 class Solution { public: int NumberOf1(int n) { int count = 0; for(int i = 0; i<32; i++){ i...
C++
2021-09-27
0
345