ramily
ramily
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ramily的博客
TA的专栏
12篇文章
0人订阅
C++每日一练
12篇文章
368人学习
全部文章
(共81篇)
题解 | #查看和3306端口建立的连接#
#!/bin/bash awk '/ESTABLISHED/ && /3306/{print $5}' | awk -F ":" ' { ++mp[$1];} END{ for(i in mp) print(mp[i],i) }' |...
2023-03-17
0
251
题解 | #nginx日志分析5-统计爬虫抓取404的次数#
#!/bin/bash # function solution() { # awk '{ # if ($0 ~ '/www.baidu.com/' && $9 = 404 ) ++a # } END { # print a # }' nowco...
2023-03-17
0
415
题解 | #格式化输出#
#!/bin/bash awk -F "" '{ f=NF%3 for (i=1;i<=NF;i++){ printf $i if((i-f)%3==0 && i!=NF) printf "," } print "" }' nowcoder.txt
2023-03-16
0
290
题解 | #打印只有一个数字的行#
#!/bin/bash awk '/^[a-z]*[0-9][a-z]*$/'
2023-03-16
0
297
题解 | #打印等腰三角形#
#!/bin/bash # read n; # awk -v n=$n 'BEGIN{ # for(i = 1; i <= n; ++i){ # row[i] = ""; # for(j = 1; j <= n-i; ++j){ # row[i] = ro...
2023-03-16
0
412
题解 | #自守数#
#include <iostream> using namespace std; int main() { int n; while (cin >> n) { int cnt = 0; for (int i = 0; i &...
2023-03-10
0
221
题解 | #字符串通配符#
#include <iostream> #include <vector> using namespace std; // 动态规划,str包含?或* int isMatch(string str, string s){ vector<vector<int...
2023-03-09
0
293
题解 | #24点游戏算法#
#include <iostream> #include <vector> #include <algorithm> using namespace std; //存储两个数字运算后的结果 double result(double a, double b, ch...
2023-03-08
0
347
题解 | #查找输入整数二进制中1的个数#
#include <iostream> using namespace std; int main() { int num; while (cin >> num) { int res = 0; while (num){ ...
2023-03-07
0
246
题解 | #放苹果#
#include <iostream> using namespace std; //递归 int num(int m, int n){ if (m == 0 || m == 1 || n == 1){ return 1; } if (m <...
2023-03-07
0
263
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页