1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
两道编程题 (5).txt 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-10-16 10:36 . 统计回文&&连续最大数
https://www.nowcoder.com/practice/9d1559511b3849deaa71b576fa7009dc?tpId=85&&tqId=29842&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
#include <iostream>
#include <string>
using namespace std;
bool IsCircle(string& str)
{
int begin=0;
int end=str.size()-1;
while(begin<end)
{
if(str[begin] != str[end])
{
return false;
}
begin++;
end--;
}
return true;
}
int main(){
string A, B;
getline(cin, A);
getline(cin, B);
int count=0;
string tmp;
for(int i=0; i<=A.size(); i++)
{
tmp=A;
tmp.insert(i, B);
if(IsCircle(tmp))
{
count++;
}
}
cout<<count<<endl;
return 0;
}
https://www.nowcoder.com/practice/5a304c109a544aef9b583dce23f5f5db?tpId=85&&tqId=29858&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
#include <iostream>
#include <vector>
using namespace std;
int GetMax(int a, int b)
{
return (a) > (b) ? (a) : (b);
}
int main()
{
int N=0;
cin>>N;
vector<int> v(N);
for(int i=0; i<N; i++)
{
cin>>v[i];
}
//动归
int max=v[0], ret=v[0];
for(int i=0; i<N; i++)
{
max=GetMax(max+v[i], v[i]);
if(max>ret)
{
ret=max;
}
}
cout<<ret<<endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助