上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 91 下一页
摘要: public class QuickSort { public static void quickSort(int[] arr,int low,int high){ int i,j,temp,t; if(low>high){ return; } i=low; j=high; //temp就是基准位 阅读全文
posted @ 2021-09-26 17:29 yub4by 阅读(120) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-09-26 15:19 yub4by 阅读(78) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-09-26 10:54 yub4by 阅读(99) 评论(0) 推荐(0)
摘要: 1、NC1 大数加法 import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * @param s string字符串 表示第一个整数 * @param t st 阅读全文
posted @ 2021-09-24 17:22 yub4by 阅读(46) 评论(0) 推荐(0)
摘要: 1、NC88 寻找第K大 import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here } } 实现 import java.util.*; pub 阅读全文
posted @ 2021-09-23 17:24 yub4by 阅读(89) 评论(0) 推荐(0)
摘要: 1、NC140 排序 import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 将给定数组排序 * @param arr int整型一维数组 待排序的数组 * @return in 阅读全文
posted @ 2021-09-22 15:39 yub4by 阅读(67) 评论(0) 推荐(0)
摘要: 有谁去年做了中国移动校园招聘的技术类的笔试题吗,考些什么内容呢? - 知乎 (zhihu.com) 中国移动校园招聘全国统一考试笔试题库内容试卷历年考试真题.doc - 百度文库 (baidu.com) 【详细指南】中国移动校园招聘流程、时间、考试内容汇总 - 知乎 (zhihu.com) 2021 阅读全文
posted @ 2021-09-22 09:50 yub4by 阅读(73) 评论(0) 推荐(0)
摘要: 1、NC9 二叉树中是否存在节点和为指定值的路径 题目 import java.util.*; /* * public class TreeNode { * int val = 0; * TreeNode left = null; * TreeNode right = null; * } */ pu 阅读全文
posted @ 2021-09-21 18:16 yub4by 阅读(47) 评论(0) 推荐(0)
摘要: (53条未读通知) 下面关于面向对象的一些理解哪些是错误的( &nbs_用友笔试题_牛客网 (nowcoder.com) 链接:https://www.nowcoder.com/questionTerminal/579b84ad450b4f31979505112f8f1459来源:牛客网 1、开闭原 阅读全文
posted @ 2021-09-21 12:16 yub4by 阅读(556) 评论(0) 推荐(0)
摘要: 1、NC96 判断一个链表是否为回文结构 import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ public class Solution { /** * * @param 阅读全文
posted @ 2021-09-20 17:12 yub4by 阅读(62) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 91 下一页