自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 2019顺丰科技笔试

1.笔试题目: 考察设计模式(工厂方法,代理) Mysql(查询,索引) 等等 2.技术面试题目: 1.求a^n快速方法,通过递归 public static void main(String[] args) { System.out.println(rec(2, 3)); } public static int rec(int a, int n) { if (n == 1) { return a; }

2020-07-27 23:05:41 332

原创 阿里巴巴2021校招

阿里2021校招 static List<String> val = new ArrayList<>(); public static void main(String[] args) { Scanner sc = new Scanner(System.in); //数据组数 int num = sc.nextInt(); int a = 1; for (int i = 0; i &lt

2020-07-27 21:05:53 406

原创 狼羊白菜问题

狼羊白菜问题 public static void main(String[] args) { int arr[] = {0, 0, 0, 0}; ArrayList<String> strings = new ArrayList<>(); strings.add(Arrays.toString(arr)); solution(arr, strings); } public static void

2020-07-27 20:43:17 190

原创 多益网络2019校招笔试

多益网络2019届校招笔试 从n个数中取k个数,相加等于m,有多少种方法 final static int[] arr = {1, 2, 3, 4, 5, 6, 7}; final static int count = 4; final static int sum = 12; final static List<List<Integer>> record = new ArrayList<List<Integer>>();

2020-07-27 20:31:20 584

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除