首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
代码太难写
获赞
22
粉丝
1
关注
1
看过 TA
11
男
湖南有色金属职业技术学院
2025
C工程师
IP属地:湖南
大一菜狗啊
私信
关注
拉黑
举报
举报
确定要拉黑代码太难写吗?
发布(247)
评论
刷题
代码太难写
关注TA,不错过内容更新
关注
11-06 09:41
湖南有色金属职业技术学院 C工程师
题解 | #插入记录(三)#
REPLACE INTO examination_info (exam_id,tag,difficulty,duration,release_time) values (9003, 'SQL', 'hard', 90, '2021-01-01 00:00:00') 应该使用'REPLACE INTO',而不是insert into
0
点赞
评论
收藏
分享
11-05 13:48
湖南有色金属职业技术学院 C工程师
题解 | #返回每个顾客不同订单的总金额#
select t2.cust_id,sum(t1.item_price*t1.quantity) as total_ordered from OrderItems t1 left join Orders t2 on t1.order_num = t2.order_num group by t2.cust_id having t2.cust_id is not NULL order by total_ordered DESC 这里使用了Left join 的方式,来进行多表查询,选择OrderItems表作为驱动表,查询条件为 t1.order_num = t2.order_num...
0
点赞
评论
收藏
分享
09-09 14:07
湖南有色金属职业技术学院 C工程师
题解 | #统计每个单词出现的个数#
#!/bin/bash awk -F" " '{for(i=1;i<=NF;i++)a[$i]++}END{for(i in a)print i,a[i]}' nowcoder.txt | sort -k2
0
点赞
评论
收藏
分享
09-09 09:30
湖南有色金属职业技术学院 C工程师
-查询某个IP的详细访问情况#
#!/bin/bash cat nowcoder.txt | grep "192.168.1.22" | awk '{print $7}' | sort | uniq -c | awk '{print $1 " " $2 }'
0
点赞
评论
收藏
分享
09-08 22:19
湖南有色金属职业技术学院 C工程师
题解 | #netstat练习1-查看各个状态的连接数#
#!/bin/bash cat nowcoder.txt | grep "tcp"|awk '{a[$6]++}END{for(i in a)print i,a[i]}'| sort -rn -k2
0
点赞
评论
收藏
分享
2023-10-09 19:44
湖南有色金属职业技术学院 C工程师
题解 | #找出字符串中第一个只出现一次的字符#
#include <iostream> #include<unordered_map> using namespace std; int main() { string s; unordered_map<int, char>st; cin >> s; if(s.size()==1) { cout<<s; return 0; } for (char x : s) { st[x]++; } for (auto&...
0
点赞
评论
收藏
分享
2023-10-09 19:08
湖南有色金属职业技术学院 C工程师
题解 | #字符串排序#
#include <iostream> #include <string> #include<vector> #include<algorithm> using namespace std; int main() { vector<string>st; int n; cin>>n; while(n--){ string num; cin>>num; st.push_back(num); } sort(...
0
点赞
评论
收藏
分享
2023-10-09 18:32
湖南有色金属职业技术学院 C工程师
题解 | #数字颠倒#
#include <iostream> #include<algorithm> using namespace std; int main() { string s; cin>>s; reverse(s.begin(), s.end()); cout<<s<<endl; } // 64 位输出请用 printf("%lld")
0
点赞
评论
收藏
分享
2023-10-09 18:30
湖南有色金属职业技术学院 C工程师
题解 | #合并表记录#
#include<iostream> #include<unordered_map> #include<map> using namespace std; int main() { map<int,int>nums; int _key,_val; int n = 0; cin>>n; for(int i = 0;i<n;i++){ cin>>_key>>_val; n...
0
点赞
评论
收藏
分享
2023-10-09 13:24
湖南有色金属职业技术学院 C工程师
题解 | #提取不重复的整数#
#include <iostream> #include<bits/stdc++.h> using namespace std; int main() { string str; cin>>str; unordered_set<char>set; for(auto it = str.rbegin();it!=str.rend();++it){ if(set.count(*it)) continue; set.insert(*it); ...
0
点赞
评论
收藏
分享
2023-09-22 11:33
湖南有色金属职业技术学院 C工程师
题解 | #判断一个链表是否为回文结构#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 the head * @return bool布尔型 */ bool isPail(List...
0
点赞
评论
收藏
分享
2023-09-21 23:30
湖南有色金属职业技术学院 C工程师
题解 | #牛群排列去重#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 */ ListNode* deleteDuplic...
0
点赞
评论
收藏
分享
2023-09-13 18:39
湖南有色金属职业技术学院 C工程师
题解 | #链表中倒数最后k个结点#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead ListNode类 * @param k int整型 * @return ListNode类 */ ...
0
点赞
评论
收藏
分享
2023-08-31 19:41
湖南有色金属职业技术学院 C工程师
2023-08-31
在牛客打卡47天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
2023-08-29 07:23
湖南有色金属职业技术学院 C工程师
2023-08-29
在牛客打卡46天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
1
2
3
4
5
6
17
关注他的用户也关注了:
牛客网
牛客企业服务