牛客263号
牛客263号
全部文章
分类
题解(44)
归档
标签
去牛客网
登录
/
注册
牛客263号的博客
全部文章
(共65篇)
题解 | #二叉树的后序遍历#
1.用深搜来遍历树并储存结果( dfs() )(1).二叉树顺序为左右根(8~10行)(2).并存到post中(5,10行)(3).遍历到空节点就跳出(7行)2.输出结果( postorderTraversal() )(1).调用dfs(),将结果存在post中(5,14行)(2).返回结果(16行...
2024-01-19
0
224
题解 | #实现简单计算器功能#
1.读题题目要求输入一个字符串和两个整数, 字符串可以得到运算方式, 再用给出的数字运算。给出的字符串不分大小写。当计算除法时,除数为零输出Error。2.要解决的问题我认为难的只有一个,就是字符串不分大小写。这个可以用transform(s1.begin(),s1.end(),s1.begin()...
2023-04-24
0
267
题解 | #查字典#
dict1 = {'a': ['apple', 'abandon', 'ant'], 'b': ['banana', 'bee', 'become'], 'c...
Python3
2022-08-15
0
248
题解 | #生成字典#
list_to_dict_1 = input().split(" ") # key, 第1次输入(input)是字典的键 list_to_dict_2 = input().split(" ") # velue, 第2次输入的是字典的值 dict1 = di...
Python3
2022-08-15
0
239
题解 | #提前结束的循环#
1.定义列表, 获取x a = [3, 45, 9, 8, 12, 89, 103, 42, 54, 79] x = int(input())2.循环找到x for i in a: if i!=x: print(i) continue break
Python3
2022-08-15
0
407
题解 | #列表的最大与最小#
a = list(range(10, 51)) print(a) print(a[0], a[len(a)-1])
Python3
2022-08-15
5
314
题解 | #小数化整数#
print(int(float(input())))
Python3
2022-08-06
51
391
题解 | #读入整数数字#
a = int(input()) print(a) print(type(a))
Python3
2022-08-06
1
261
题解 | #读入字符串#
print(input())
Python3
2022-08-06
9
243
题解 | #迭代器遍历set#
#include<bits/stdc++.h> using namespace std; int main(){ set<int> s; // write your code here...... for (int i=0;i<5;i++){ ...
C++
2022-07-08
0
296
首页
上一页
1
2
3
4
5
6
7
下一页
末页