泡半年了

2023.10.26通过三轮面试,泡了半年了,给校招热线和hr打了n个电话还是不给解锁简历😅泡到天荒地老去吧
全部评论
华子是这样的,泡到死
点赞 回复 分享
发布于 05-11 09:04 上海

相关推荐

1. C++中的构造函数和析构函数有什么区别?2. 解释一下C++中的拷贝构造函数和移动构造函数。3. C++中的模板是什么?它的优缺点是什么?4. C++中的静态成员与非静态成员有什么区别?5. 解释一下C++中的命名空间(namespace)。6. C++中如何实现一个简单的链表?7. C++中的虚函数表(vtable)是什么?8. C++中的异常处理机制是如何工作的?9. C++中如何使用std::thread创建和管理线程?10. 解释一下C++中的多态性及其实现方式。11. C++中的const修饰符有什么作用?12. C++中如何使用std::map和std::unordered_map?13. 解释一下C++中的函数重载和运算符重载。14. C++中如何实现一个简单的计数器类?15. C++中的内存泄漏是什么,如何防止?16. 解释一下C++中的智能指针的使用场景。17. C++中如何使用std::deque?18. C++中的范围for循环是什么,如何使用?19. C++中如何实现一个简单的状态模式?20. 解释一下C++中的动态内存分配和释放。21. C++中如何使用std::unordered_set?22. C++中的函数模板和类模板有什么区别?23. 解释一下C++中的类型限制(SFINAE)。24. C++中如何实现一个简单的二叉树?25. C++中的std::function有什么用?26. C++中如何使用std::condition_variable进行线程同步?27. 解释一下C++中的类型安全(type safety)。28. C++中如何实现一个简单的优先队列?29. C++中的std::string与C风格字符串有什么区别?30. 解释一下C++中的尾返回类型(trailing return type)。31. C++中如何使用std::tuple?32. C++中的可变参数模板(variadic templates)是什么?33. 解释一下C++中的委托构造函数(delegating constructors)。34. C++中如何实现一个简单的图遍历算法?35. C++中的std::shared_ptr与std::weak_ptr有什么关系?问题答案已经整理到专栏中了,关注我分享更多知识。  c++/嵌入式面经专栏-牛客网 https://www.nowcoder.com/creation/manager/columnDetail/MJNwoM
点赞 评论 收藏
分享
#字节笔试#四道编程 C++解法第一题 木板可收集雨水的最大量int main() {int n;cin >> n;priority_queue pq;for (int i = 0; i int x;cin >> x;pq.push(x);}pq.pop();cout (n - 1) * pq.top();}第二题 数组按顺序插入双端队列可否保证有序(非严格递增)int main() {int T, n;cin >> T;for (int i = 0; i cin >> n;vector nums(n - 1);int l, r;cin >> l; r = l;for (auto& x : nums)cin >> x;bool flag = true;for (auto x : nums) {if (x else if (x >= r)r = x;else {flag = false;break;}}cout }}第三题 n天内做超过两件事的天数int main() {using ll = long long;int T, n, a, b, c;cin >> T;for (int k = 0; k cin >> n >> a >> b >> c;ll Nab = lcm(a, b), Nbc = lcm(b, c), Nac = lcm(a, c);ll N = lcm(Nab, c);int res = n / Nab + n / Nbc + n / Nac - n / N * 2;cout }}第四题 最大值不重复的子数组个数(没做出来,通过10%)int main() {int n;cin >> n;vector nums(n);for (auto& x : nums)cin >> x;using pii = pair;stack stk;queue q;for (int i = 0; i int x = nums[i];while (!stk.empty() && stk.top().first stk.pop();}if (!stk.empty() && stk.top().first == x) {q.emplace(stk.top().second, i);stk.pop();}stk.emplace(x, i);}long long res = (long long)n * (1 + n) / 2;while (!q.empty()) {auto [l, r] = q.front(); q.pop();int x = nums[l];int i = l - 1, j = r + 1;while (i >= 0 && nums[i] while (j res -= (long long)(l - i) * (j - r);}cout }
投递字节跳动等公司10个岗位
点赞 评论 收藏
分享
4 1 评论
分享
牛客网
牛客企业服务