1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
两道编程题.txt 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
https://www.nowcoder.com/questionTerminal/6736cc3ffd1444a4a0057dee89be789b?orderByHotValue=1&page=1&onlyReference=false
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int main()
{
int n=0;
cin>>n;
long long sum=0;
vector<int> v;
v.resize(n*3);
//输入
for(int i=0; i<n*3; i++)
{
cin>>v[i];
}
//排序
//std::sort(v.begin(), v.end());
sort(v.begin(), v.end());
//取每组第二大的数
for(int i=0; i<n; i++)
{
sum+=v[v.size()-2*(i+1)];
}
cout<<sum<<endl;
return 0;
}
https://www.nowcoder.com/practice/f0db4c36573d459cae44ac90b90c6212?tpId=85&&tqId=29868&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1, s2;
//读取键盘中的字符串,注意:空格和\n,即用getline.
getline(cin, s1);
getline(cin, s2);
//数组记录一下s2字符串中出现的字符
int rchar[256]={0};
for(int i=0; i<s2.size(); i++)
{
rchar[s2[i]]++;
}
//排除,与数组中相同的,记录s1与s2不同的部分
string ret;
for(int i=0; i<s1.size(); i++)
{
if(rchar[s1[i]]==0)
{
ret+=s1[i];
}
}
cout<<ret.c_str()<<endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助