happyfox
happyfox
全部文章
分类
归档
标签
去牛客网
登录
/
注册
happyfox的博客
全部文章
(共4篇)
题解 | #确定 Products 表中价格不超过 10
select max(prod_price) as max_price from Products where prod_price <= 10 ;
2022-12-03
0
271
题解 | #矩阵最大值#
#include<iostream> using namespace std; int main() { int m,n; while(cin >>m >>n ) { int&n...
2022-07-10
1
352
题解 | #遍历链表#
首先我们先定义好一个节点 struct node { int val; node * next; node(int&...
C++
链表
2022-07-10
2
324
题解 | #对称矩阵#
直接暴力 100^2 =10000 時間足夠了,直接来判断各个位置。如果矩阵变大,需要进行“剪枝操作”,比如被检测过的对称位置不检测,和对角线不检测
2022-07-07
0
262