leetcode 中 java 版本的代码 怎么提交
答案:2 悬赏:60 手机版
解决时间 2021-03-02 18:32
- 提问者网友:爱唱彩虹
- 2021-03-01 20:59
leetcode 中 java 版本的代码 怎么提交
最佳答案
- 五星知识达人网友:上分大魔王
- 2021-03-01 21:26
不能写main函数,你需要的是按照class Solution给的接口来实现它的一个成员函数
给一个参考答案
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include
using namespace std;
class Solution {
public:
void reverseWords(string &s) {
string ans = "", temp;
stringstream sin(s);
while(sin >> temp) {
if(ans != "") {
ans = temp + " " + ans;
} else {
ans = temp;
}
}
s = ans;
}
};
给一个参考答案
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include
using namespace std;
class Solution {
public:
void reverseWords(string &s) {
string ans = "", temp;
stringstream sin(s);
while(sin >> temp) {
if(ans != "") {
ans = temp + " " + ans;
} else {
ans = temp;
}
}
s = ans;
}
};
全部回答
- 1楼网友:平生事
- 2021-03-01 21:55
搜一下:leetcode 中 java 版本的代码 怎么提交
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯