offer选择

投票
各位大佬,本人现在软工准大四,因为目前还没有实习过担心秋招竞争力太小,所以打算下个学期去实习。目前收到的offer有星环的java开发和得物的国际技术实习生。工作内容上感觉星环可能会相对轻松一些吗(?),因为九、十月份马上就要秋招了,所以很纠结是选择稍微轻松点还是title大点的好写在简历上的。希望大佬们给点建议,谢谢
全部评论
如果不打算秋招的话就选title大压力小的呗
点赞 回复 分享
发布于 08-27 18:23 湖南
兄弟你怎么说 我也拿到得物的offer,在考虑去不去
点赞 回复 分享
发布于 08-29 14:15 重庆
友塔游戏
校招火热招聘中
官网直投

相关推荐

09-15 11:05
已编辑
门头沟学院 Java
public class Solution {    public ListNode reverseBetween(ListNode head, int m, int n) {if(head==null)return null;ListNode preHead=new ListNode(0);preHead.next=head;ListNode  head0=head;ListNode head1= head;ListNode tempList=null;ListNode node1=null,node2=null,next=null,pre=null;//当节点为第一个节点时if(m==1)pre=preHead;//循环找到指定的节点的前一个节点for(int i=0; i<m-1; i++){if(i==0)pre=preHead;pre=pre.next;}//找到要反转节点的位置node1=pre.next;ListNode temp=node1;//循环找到要反转的链表的最后一个节点for(int i=0; i<n-m; i++){node2=temp.next;temp= temp.next;}// 分类讨论,当节点m=n时候if(m==n){node2=temp;next=node2.next;node2.next=null;}// m!=n时else{next=node2.next;node2.next=null;}// 调用第一题反转链表的函数tempList=run(node1);// 将前驱节点指向反转链表首部pre.next=tempList;// 找到反转链表的最后一个元素while(tempList.next!=null){tempList=tempList.next;}// 将将反转链表的最后一个元素指向原链表位置的下一个元素tempList.next=next;//返回头节点return  preHead.next;}//反转链表函数public static ListNode run(ListNode head){  if(head==null)            return null;            ListNode reversedHead=null;            ListNode current=head;            ListNode tmp=null;                    while(current!=null){            tmp= current;            current= current.next;            tmp.next=null;            if(reversedHead==null)            reversedHead=tmp;            else{                tmp.next=reversedHead;                reversedHead=tmp;            }                 }            return reversedHead;     }}
投递思源智通等公司10个岗位
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务