首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
Black-K
获赞
55
粉丝
2
关注
5
看过 TA
92
男
陕西科技大学
2023
测试开发
IP属地:陕西
秋招收了我吧,
私信
关注
拉黑
举报
举报
确定要拉黑Black-K吗?
发布(20)
评论
刷题
Black-K
关注TA,不错过内容更新
关注
2022-09-15 12:26
陕西科技大学 测试开发
网上看到,着实破防,不知道说啥
ShawnLee0223:
我发的……
0
点赞
评论
收藏
分享
2022-08-19 10:08
陕西科技大学 测试开发
恒生电子 内推,欢迎私聊
Hello,我是恒生电子股份有限公司的校园大使,不想简历投递后“泡池子”,登录链接:campus.hundsun.com/campus/jobs填写我的推荐码:EVKGHB 投递,简历第一时间送到HR面前,快来投递吧~
投递恒生电子股份有限公司等公司10个岗位 >
0
点赞
评论
收藏
分享
2022-02-28 09:45
陕西科技大学 测试开发
题解 | #查找除复旦大学的用户信息#
# select device_id,gender,age,university from user_profile where age is not null; select device_id,gender,age,university from user_profile where age!='null';
0
点赞
评论
收藏
分享
2022-02-28 09:39
陕西科技大学 测试开发
题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where university<>"复旦大学"; select device_id,gender,age,university from user_profile where university<>"复旦大学";
0
点赞
评论
收藏
分享
2021-11-20 22:24
陕西科技大学 测试开发
题解 | #二叉搜索树的最近公共祖先#
1.都在左边,或者都在右边,否则有一个就是我,,直接跳出,返回我; 2.递归调用 * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @p...
0
点赞
评论
收藏
分享
2021-11-09 23:19
陕西科技大学 测试开发
题解 | #二叉树的深度#
struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class Solution { public: int TreeDepth(TreeNode* pRoot) { if(!pRoot) return 0; int left=TreeDepth(pRoot->left)+1; int right=TreeDept...
0
点赞
评论
收藏
分享
2021-11-09 08:54
陕西科技大学 测试开发
题解 | #链表中环的入口结点#
struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ListNode* EntryNodeOfLoop(ListNode* pHead) { // unordered_set<ListNode*> s; // ListNode* cur_pHead=pHead; // while(cur_p...
0
点赞
评论
收藏
分享
2021-11-08 23:26
陕西科技大学 测试开发
题解 | #两个链表的第一个公共结点#
struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* FindFirstCommonNode( ListNode* pHead1, ListNode* pHead2) { if(pHead1==nullptr || pHead2==nullptr) return nullptr; ListNode* cur_pH...
0
点赞
评论
收藏
分享
2021-09-03 09:13
陕西科技大学 测试开发
题解 | #链表的回文结构#
两种方法,第二种的话空间复杂度成O(N)了;; /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ class PalindromeList { public: bool chkPalindrome(ListNode* A) { if(A==NULL) return false; ListNode* slow=A,*fast=A; while(fas...
0
点赞
评论
收藏
分享
2021-09-02 15:57
陕西科技大学 测试开发
题解 | #链表中倒数第k个结点#
class Solution { public: ListNode* FindKthToTail(ListNode* pListHead, unsigned int k) { ListNode *fast=pListHead; ListNode *slow=pListHead; while(k--){ if(fast) fast=fast->next; else return NULL; } ...
0
点赞
评论
收藏
分享
2021-08-14 11:10
陕西科技大学 测试开发
题解 | #顺时针打印矩阵#
class Solution { public: vector<int> printMatrix(vector<vector<int> > matrix) { vector<int> v; if(matrix.empty()) return v; int rows=matrix.size(); int cols=matrix[0].size(); int left=0,right=cols-1,top=0,bottom=rows-1; ...
0
点赞
评论
收藏
分享
2021-08-11 10:28
陕西科技大学 测试开发
题解 | #第一个只出现一次的字符#
class Solution { public: int FirstNotRepeatingChar(string str) { if(str.empty()) return -1; //方法一: // map<char,int> m; // for(int i=0;i<str.size();++i) // m[str[i]]++; // for(int i=0;i<str.size();i++){ // if(m[str[i]]==1...
0
点赞
评论
收藏
分享
2021-08-10 09:18
陕西科技大学 测试开发
题解 | #从上往下打印二叉树#
保存每一层存在的节点在queue里面,依次判断打印, /* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class Solution { public: vector<int> PrintFromTopToBottom(TreeNode* root) { vector<i...
0
点赞
评论
收藏
分享
2021-08-05 23:31
陕西科技大学 测试开发
题解 | #数组中出现次数超过一半的数字#
两行代码搞定。。。。 class Solution { public: int MoreThanHalfNum_Solution(vector<int> numbers) { sort(numbers.begin(),numbers.end()); return numbers[numbers.size()/2]; } };
0
点赞
评论
收藏
分享
2021-08-04 23:30
陕西科技大学 测试开发
题解 | #包含min函数的栈#
class Solution { public: stack<int> s1; stack<int> s2; void push(int value) { if(s2.empty()||value<=s2.top()) s2.push(value); s1.push(value); } void pop() { if(s2.top()==s1.top()) s2.pop(); s1.pop(); } ...
0
点赞
评论
收藏
分享
1
2
关注他的用户也关注了:
牛客网
牛客企业服务