许愿铁路局信息所offer

#许愿##求offer#
全部评论
签了太铁信息技术所
1 回复 分享
发布于 2021-11-01 16:38
铁路可推
点赞 回复 分享
发布于 06-02 20:28 山东
楼主什么专业呢?在官网上投递的码?
点赞 回复 分享
发布于 2021-11-06 10:00
我也签了
点赞 回复 分享
发布于 2021-10-31 16:57
已签
点赞 回复 分享
发布于 2021-10-29 09:34
楼主报的哪家的
点赞 回复 分享
发布于 2021-10-23 11:36
请问笔试吗,还是直接面试呀
点赞 回复 分享
发布于 2021-10-21 22:45
请问信息所待遇怎么样哇
点赞 回复 分享
发布于 2021-10-21 19:21
现在还有信息所吗?不是申铁吗
点赞 回复 分享
发布于 2021-10-20 09:25
你必有,耶稣都挡不住,我说的!🤣
点赞 回复 分享
发布于 2021-10-18 19:38

相关推荐

06-22 22:50
河南大学 C++
//现有一链表的头指针 ListNode* pHead,给一定值x,//编写一段代码将所有小于x的集中于前半部分,大于x的集中于后半部分,//若链表内有x则居于中间,没有则不显示//且不能改变原来的数据相对顺序,返回重新排列后的链表的头指针。//示例 x=5//1 6 2 7 3 5 9 8  (5)-->1 2 3 5 6 7 9 8//1 6 2 7 8 5 9 3  (5)-->1 2 3 5 6 7 8 9//1 2 3 (5)-->1 2 3//6 7 8 (5)--->6 7 8//5 5 5 (5)--->5 5 5ListNode* Partition(ListNode* phead,int x){ListNode* smallhead = NULL;ListNode* smallx = NULL;ListNode* bighead = NULL;ListNode* bigx = NULL;ListNode* flaghead = NULL;ListNode* flagx = NULL;if (phead == NULL)return NULL;while (phead){if (phead->val < x){if (smallhead == NULL){smallx = phead;smallhead = smallx;}else{smallx->next = phead;smallx = smallx->next;}}else if (phead->val > x){if (bighead == NULL){bigx = phead;bighead = bigx;}else{bigx->next = phead;bigx = bigx->next;}}else{if (flaghead == NULL){flagx = phead;flaghead = flagx;}else{flagx->next = phead;flagx = flagx->next;}}phead = phead->next;}if(bigx)bigx->next = NULL;if (flaghead != NULL){if (smallhead == NULL){flagx->next = bighead;return flaghead;}else{smallx->next = flaghead;flaghead->next = bighead;return smallhead;}}else{if (smallhead == NULL){return bighead;}else{smallx->next = bighead;return smallhead;}}}
点赞 评论 收藏
分享
06-17 12:11
广东亿迅_Java
点赞 评论 收藏
分享
评论
1
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务