10.15.2024刷华为OD C题型(二)

10.15.2024刷华为OD C题型(二)

如果是目标院校150分能过,而且这道题是两百分的话我就阿弥陀佛了。
这类简单类型的字符串处理题目一看就有思路,起码能做,遇到那种稍微加点数学的,感觉直接GG。
所以说,不知道这种永无止境的测试对于个人的技术积累有什么意义,难度适中还行,如果难度大到一定程度,就算是神仙也一样做不出来。
就算是侥幸过了,实操的时候,还有很多的考试内容,不知道应该怎么去过,但至少这个东西先不用想。
所以重新明确目标就是 至少每天浏览十道题目 ,把简单的题目思路过一遍,剩下的难题再说,至少把之前自己的代码能力先捡回来。
十道题目,做一下挑选分类,评定题目的难度。

我发现刷题这种东西根本没法停下哎,一停下来就会忘记很多东西,所以说好好复习吧。

这道智能成绩表,我就先放在这里。明天回来复习,也不知道AI生成的对不对。

密码输入检测

这题做了半个钟,其实不难,就是细枝末节慢慢摸回来,要是用上AI估计更快...所以前期可以慢,但是后面要 慢慢加快速度。

1.遍历,注意字符串遍历会缩短,因此先用空格代替,后面再排除一遍

2.一个个判断,然后&&得出结果

cpp 复制代码
#include <iostream>
#include <string>
using namespace std;

string scanStr(string str);
int main() {
    string str = "ABC<c89%000<";
    string result;
    for (int i = 0; i < str.length(); ++i) {
        if(str[i] == '<'){
            if(i != 0){
                str[i] = ' ';
                str[i-1] = ' ';
            }
        }
    }
    for (char ch : str) {
        if (!isspace(ch)) {
            result += ch;
        }
    }
    cout << result << ',';

    //判断是否满足要求
    bool a = false;
    if(str.length() >= 8) a = true;
    bool b = false;
    for(int i = 0; i < str.length(); i++){
        if(str[i] >='a'&& str[i] <='z')
            b = true;
            break;
    }
    bool c = false;
    for(int i = 0; i < str.length(); i++){
        if(str[i] >='A'&& str[i] <='Z')
            c = true;
            break;
    }
    bool d = false;
    for(int i = 0; i < str.length(); i++){
        if(str[i] >='0'&& str[i] <='9')
            d = true;
            break;
    }
    bool e = false;
    for(int i = 0; i < str.length(); i++){
        if(str[i] >='0'&& str[i] <='9' || str[i] >='a'&& str[i] <='z' || str[i] >='A'&& str[i] <='Z'){
             continue;
        }
        else{
            e = true;
            break;
        }
    }

    bool result1 = a && b && c && d &&e;
    string res = result1 ? "true":"false";
    cout<< res << endl;


    return 0;
}

智能成绩表

https://www.nowcoder.com/discuss/561941270055096320

cpp 复制代码
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>

using namespace std;

struct Student {
    string name;
    vector<int> scores;
};

bool compareStudents(const Student& a, const Student& b, const string& subject) {
    if (subject.empty()) {
        // 按总分排序
        return accumulate(a.scores.begin(), a.scores.end(), 0) >
               accumulate(b.scores.begin(), b.scores.end(), 0);
    } else {
        // 找到对应科目的索引
        int index = find(a.scores.begin(), a.scores.end(), subject) - a.scores.begin();
        return a.scores[index] > b.scores[index];
    }
}

int main() {
    int n, m;
    cin >> n >> m;

    vector<string> subjects(m);
    for (int i = 0; i < m; i++) {
        cin >> subjects[i];
    }

    vector<Student> students(n);
    for (int i = 0; i < n; i++) {
        cin >> students[i].name;
        students[i].scores.resize(m);
        for (int j = 0; j < m; j++) {
            cin >> students[i].scores[j];
        }
    }

    string sortSubject;
    cin >> sortSubject;

    // 根据指定科目或总分排序
    sort(students.begin(), students.end(),
         [&sortSubject](const Student& a, const Student& b) {
             return compareStudents(a, b, sortSubject);
         });

    // 输出排序后的学生姓名
    for (const auto& student : students) {
        cout << student.name << " ";
    }
    cout << endl;

    return 0;
}
相关推荐
GIS阵地1 小时前
QgsRasterDataProvider 完整详解(QGIS 3.40.13 C++)
开发语言·c++·qt·开源软件·qgis
yaoxin5211232 小时前
462. Java 反射 - 获取声明类与封闭类
java·开发语言·python
阿里嘎多学长2 小时前
2026-07-14 GitHub 热点项目精选
开发语言·程序员·github·代码托管
charlie1145141913 小时前
Cinux: 为大内核铺路
开发语言·c++·操作系统·现代c++
2501_914245933 小时前
C语言设计模式详解:从理论到实践的完整指南
c语言·开发语言·设计模式
Hazenix3 小时前
Go 指南:一篇文章速通 Golang
开发语言·后端·golang
灯澜忆梦3 小时前
GO_复合类型---指针
开发语言·后端·golang
Ulyanov4 小时前
雷达导引头Python仿真框架:GPU加速、6-DOF模型与半实物仿真接口
开发语言·python·雷达信号处理·雷达导引头
名字还没想好☜5 小时前
Go slice 的 append 陷阱:共享底层数组导致的数据串改
开发语言·后端·golang·go·slice
bitbrowser5 小时前
Claude 账号频繁被封?转向国内可直接使用的 AI 工具
开发语言·php