使用字典映射解决封闭图形问题 摘要:解题思路:注意事项:参考代码:def sum_town(num): #定义函数,以num为参照物 a={'0':1,'4':1,'6&…… 题解列表 2025年03月17日 2 点赞 0 评论 377 浏览 评分:0.0
x进制减法,一看就会 摘要:解题思路:进制转换问题如8位进制下的123转换成10进制是3*1+2*8+1*8*8,那么对于题目中X 进制数,最低数位为二进制,第二数位为十进制,第三数位为八进制,X 进制数 321 转…… 题解列表 2025年03月17日 1 点赞 0 评论 516 浏览 评分:10.0
常规解法---------------------------------------------------------- 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <cstring>using namespace std;const int N = 101…… 题解列表 2025年03月17日 0 点赞 0 评论 252 浏览 评分:0.0
暴力解法--一行代码搞定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; …… 题解列表 2025年03月17日 1 点赞 0 评论 342 浏览 评分:0.0
解方程-------------------------------------------------------------------------------- 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <cmath>using namespace std;int main(){ &…… 题解列表 2025年03月17日 1 点赞 0 评论 377 浏览 评分:10.0
1771: [编程入门]链表之节点删除 摘要:```c#include #include struct Student { int id; int score; struct Student *nex…… 题解列表 2025年03月17日 0 点赞 0 评论 289 浏览 评分:0.0
编写题解 1770: [编程入门]链表之报数问题 摘要:```c#include struct Student{ int id; struct Student *next;};int main() { int n;…… 题解列表 2025年03月16日 1 点赞 0 评论 276 浏览 评分:0.0
小白的bfs与dfs代码(dfs超时了555,用/**/略掉了) 摘要:```cpp#includeusing namespace std;struct pos//能记录步数与位置的结构体{ int x;//第n行 int y;//第m列 …… 题解列表 2025年03月16日 0 点赞 0 评论 242 浏览 评分:0.0
题解 2791: 计算邮资 摘要:```cpp#includeusing namespace std;int main() { int n; char y; cin >> n >> …… 题解列表 2025年03月16日 0 点赞 0 评论 235 浏览 评分:0.0
题解 2836: 数组逆序重放 摘要:解题思路:在正向循环后需要有有一个反向循环注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long l…… 题解列表 2025年03月16日 0 点赞 0 评论 289 浏览 评分:0.0