首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
ao_lang
获赞
6
粉丝
0
关注
1
看过 TA
16
男
河南科技大学
2027
算法工程师
IP属地:河南
C++是世界上最好的语言.py
私信
关注
拉黑
举报
举报
确定要拉黑ao_lang吗?
发布(32)
评论
刷题
ao_lang
关注TA,不错过内容更新
关注
2023-12-20 10:39
河南科技大学 算法工程师
题解 | #获取字符串长度#
#include <iostream> #include <string> using namespace std; int main() { string arr; getline(cin,arr); cout<<arr.length()<<endl; return 0; }
0
点赞
评论
收藏
分享
2023-12-12 22:44
河南科技大学 算法工程师
题解 | #两个链表的第一个公共结点#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead1 ListNode类 * @param pHead2 ListNode类 * @return ListNode类 */ struct ListNode* FindFirstCommonNode(struct ListNode* pHead1, struct ListNode* pHead2 ) { // writ...
0
点赞
评论
收藏
分享
2023-12-11 22:29
河南科技大学 算法工程师
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ListNode* EntryNodeOfLoop(ListNode* pHead) { ListNode* fast = pHead,*slow = pHead; while(fast&&fast->next) { ...
0
点赞
评论
收藏
分享
2023-12-11 11:23
河南科技大学 算法工程师
题解 | #合并两个排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead1 ListNode类 * @param pHead2 ListNode类 * @return ListNode类 */ struct ListNode* Merge(struct ListNode* pHead1, struct ListNode* pHead2 ) { // write code h...
0
点赞
评论
收藏
分享
2023-12-10 13:19
河南科技大学 算法工程师
题解 | #利用指针遍历数组#
#include <iostream> using namespace std; int main() { int arr[6] = { 0 }; int* ptr = arr; int len = sizeof(arr) / sizeof(int); for (int i = 0; i < len; i++) { cin >> arr[i]; } // write your code here...... for(int i = 0;i<len;i++) { ...
0
点赞
评论
收藏
分享
2023-12-10 13:11
河南科技大学 算法工程师
题解 | #结构体简单使用#
#include <iostream> #include <string> using namespace std; struct student { // write your code here...... string name; int age; double height; }; int main() { // write your code here...... struct student s; cin>>s.name>>s.age>>s.height; ...
0
点赞
评论
收藏
分享
2023-12-10 13:08
河南科技大学 算法工程师
题解 | #字符串拼接#
#include <stdio.h> #include <string.h> int main() { char str1[100],str2[100]; gets(str1); gets(str2); printf("%s\n",strcat(str1,str2)); return 0; }
0
点赞
评论
收藏
分享
2023-12-10 12:56
河南科技大学 算法工程师
题解 | #规律数列求和#
#include <iostream> using namespace std; int main() { // write your code here...... cout<<9+99+999+9999+99999+999999+9999999+99999999+999999999+9999999999<<endl; return 0; }
0
点赞
评论
收藏
分享
2023-12-04 12:16
河南科技大学 算法工程师
题解 | #反转字符串#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 反转字符串 * @param str string字符串 * @return string字符串 */ char* solve(char* str ) { // write code here size_t len = strlen(str); char* left = str,*right = str+len-1; while(left<right) { char temp = *left; *left = ...
0
点赞
评论
收藏
分享
2023-12-04 11:05
河南科技大学 算法工程师
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 */ struct ListNode* ReverseList(struct ListNode* head ) { // write code here struct ListNode* phead = (struct ListNode*)...
0
点赞
评论
收藏
分享
2023-12-03 17:39
河南科技大学 算法工程师
2023-12-03
在牛客打卡5天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
2023-12-01 19:10
河南科技大学 算法工程师
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 */ struct ListNode* ReverseList(struct ListNode* head ) { // write code here struct ListNode* phead = (struct ListNode*)...
0
点赞
评论
收藏
分享
2023-12-01 15:12
河南科技大学 算法工程师
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ListNode类 */ struct ListNode* ReverseList(struct ListNode* head ) { // write code here struct ListNode* cur = head,*newnode = NULL...
0
点赞
评论
收藏
分享
2023-11-22 11:14
河南科技大学 算法工程师
2023-11-22
在牛客打卡4天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
2023-08-04 10:44
河南科技大学 算法工程师
2023-08-04
在牛客打卡3天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
1
2
3
关注他的用户也关注了:
牛客网
牛客企业服务