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;
}
相关推荐
恋恋西风44 分钟前
C++ 理解 std::thread 在单核和多核上的行为差异
开发语言·c++
Brilliantwxx1 小时前
【Linux】 进程(9)程序与进程地址空间(基础+进阶+面试题)
linux·运维·服务器·开发语言·c++
BizzZ_2 小时前
C++(22)——类型转换和IO流
开发语言·c++
小范同学_2 小时前
JDK1.7 与 JDK1.8 HashMap 底层原理对比 + 数组并发扩容死循环详解
java·开发语言
xiaobobo33302 小时前
c语言中for循环条件中定义临时栈变量的作用域
c语言·for循环条件定义栈变量·大括号作用域·独立栈变量
geovindu2 小时前
CSharp: 万年历
开发语言·后端·c#·.net
我找到地球的支点啦3 小时前
Matlab系列(009) 一CRC循环冗余校验详解
开发语言·数据结构·算法·matlab·信息与通信
予昊3 小时前
从零实现“在线五子棋对战“:WebSocket 实时通信 + 段位匹配
java·开发语言·网络·websocket
惜离殇3 小时前
从零开始的敲代码生活--Linux应用软件(文件操作基础1)
linux·c语言·文件操作·标准io
weixin_461408583 小时前
Mybatis-flex小记
java·开发语言·mybatis