Loading

摘要: C++ 标准模板库 (STL, Standard Template Library):包含一些常用数据结构与算法的模板的 C++ 软件库。 其包含六类组件: 容器Containers:存数据。 迭代器Iterators:访问数据。 算法Algorithms:处理数据。 函数对象Function Ob 阅读全文
posted @ 2026-08-07 16:55 AuroraKelsey 阅读(26) 评论(0) 推荐(0)
摘要: 补题链接 : https://qoj.ac/contest/2564 J. 后鼻嘤 在每个以 n 结尾的字符串后添加 g 并输出 读入一整行法 //2025-11-02 #include <iostream> #include <cstdio> #include <algorithm> #inclu 阅读全文
posted @ 2025-11-10 00:16 AuroraKelsey 阅读(157) 评论(0) 推荐(0)
摘要: pip install时报错如下: WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLZero 阅读全文
posted @ 2025-07-22 23:12 AuroraKelsey 阅读(1321) 评论(0) 推荐(0)
摘要: 首先打开需要下载的页面,按F12进入开发者模式。 点击“元素”板块,里面是一堆html的代码。 然后按ctrl+F,搜索".pdf",这里具体要看需要下载的文件的格式。 然后找到对应的链接(注意是链接),右键,复制链接地址 举个例子,链接地址为下面的 https://hike-doc-online- 阅读全文
posted @ 2025-03-17 14:42 AuroraKelsey 阅读(461) 评论(0) 推荐(0)
摘要: 南开高级语言程序设计2-1的oj题目答案,本人亲测AC,供大家参考。 nku c++ 2-2的点这里 字符串旋转 题目描述 定义字符串的旋转操作为: 左旋转 L :把字符串前面的若干个字符移动到字符串的尾部,如把字符串abcdef左旋转2位得到字符串cdefab。 右旋转 R :把字符串后面的若干个 阅读全文
posted @ 2024-11-16 16:11 AuroraKelsey 阅读(125) 评论(0) 推荐(1)