[信息学奥赛一本通T1471-Phone List] Trie字典树做法 摘要:# Trie tree: [ { …… 题解列表 2024年09月17日 0 点赞 0 评论 543 浏览 评分:9.9
编写题解 1042: [编程入门]电报加密 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年09月17日 0 点赞 0 评论 478 浏览 评分:9.9
编写题解 1040: [编程入门]实数的打印 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年09月17日 2 点赞 0 评论 331 浏览 评分:9.9
1050:结构体之成绩记录 #C++ 摘要:1. id 类型必须 string 2. 多行输入注意 换行符 3. ```cpp for(int i = 0; i < 3; ++i) std::cin >> student.scores…… 题解列表 2024年09月17日 0 点赞 0 评论 465 浏览 评分:9.9
二进制分类 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int wei(int n) { int cnt=0; while(n!=0) {…… 题解列表 2024年09月17日 0 点赞 0 评论 126 浏览 评分:0.0
二进制移位练习 摘要:参考代码:#include<bits/stdc++.h> using namespace std; //int wei(int n) //{ // int cnt=0; // while(n…… 题解列表 2024年09月17日 0 点赞 0 评论 210 浏览 评分:0.0
位运算是个简便方法 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int wei(int n) { int cnt=0; while(n!=0) {…… 题解列表 2024年09月17日 0 点赞 0 评论 170 浏览 评分:0.0
1049:结构体之时间设计--思路 #C++ 摘要:##### 闰年条件 1. 4 的倍数 2. 400 的倍数 ```cpp year % 4 == 0 && year % 100 != 0 //% 取模 ``` ```cpp …… 题解列表 2024年09月17日 1 点赞 0 评论 300 浏览 评分:0.0