盛趣游戏C++游戏服务端二面5.8

全程35分钟!
1.自我介绍
2.选你最熟悉的项目深挖
3.tcp粘包,如何解决?
4.怎么自己设计数据库
5.自己设计过那些小工具?日志系统,简易shell
6.STL是线程安全的吗?
7.哈希冲突,红黑树
8.说一下线程安全
9.负载均衡的算法了解哪些?
10.游戏寻路算法了解吗?答了回溯
11.数学三维和二维两点之间的距离
12.实习经历,写过哪些算法?
13.为什么游戏服务器不用数据库?
还有一些小点实在是忘了,许愿许愿~
update:已offer
全部评论
佬你的项目有啥,能看看你的简历吗😭
2 回复 分享
发布于 2023-05-09 04:20 湖北
盛趣一堆外包
1 回复 分享
发布于 2023-05-23 19:36 江苏
佬打算润盛趣了吗?
点赞 回复 分享
发布于 2023-05-17 20:19 浙江
设计数据库是指设计数据库表吗
点赞 回复 分享
发布于 2023-07-04 11:49 江苏
大佬第三个问题这么回答
点赞 回复 分享
发布于 2023-09-14 10:20 江苏
大佬请问一下为什么拒了吗
点赞 回复 分享
发布于 2024-09-01 15:28 安徽

相关推荐

2024-12-30 14:37
哈尔滨理工大学 C++
#include #include using namespace std;struct Student {    int id;                 string name;            int score;              Student* next;     };int main() {    Student* head = nullptr;      Student* tail = nullptr;     while (true) {        int id;        string name;        int score; cin >> id;        if (id == 0) {            break;        } cin >> name >> score;          Student* newStudent = new Student{id, name, score, nullptr};        if (head == nullptr) {            head = newStudent;            tail = newStudent;        } else { tail->next = newStudent;            tail = newStudent;        }    }    Student* current = head;    while (current != nullptr) {        cout id name score current = current->next;    }    current = head;    while (current != nullptr) {        Student* temp = current; current = current->next;        delete temp;    }    return 0;}
点赞 评论 收藏
分享
01-02 10:36
已编辑
门头沟学院 Unity3D客户端
点赞 评论 收藏
分享
评论
6
42
分享
牛客网
牛客企业服务