09 2021 档案

摘要:0、先自我介绍一下 博冠智能1面 1、Python列表和元组的区别 列表是动态数组,它们可变且可以重设长度(改变其内部元素的个数)。 元组是静态数组,它们不可变,且其内部数据一旦创建便无法改变。 元组缓存于Python运行时环境,这意味着我们每次使用元组时无须访问内核去分配内存。 2、SQL中的事务 阅读全文
posted @ 2021-09-27 16:43 yub4by 阅读(468) 评论(2) 推荐(0) 编辑
摘要:1、MVC架构 2、三层架构 3、MVC架构与三层架构的区别 4、SSH框架与MVC架构的对应关系 5、SSM框架与MVC架构的对应关系 6、其他理解 6.1 MVC架构 6.2 三层架构 6.3 MVC架构与三层架构的区别 MVC架构 = 模型Model + 视图View1 + 控制器Contro 阅读全文
posted @ 2021-09-27 15:14 yub4by 阅读(579) 评论(0) 推荐(0) 编辑
摘要:(99+条未读通知) 牛客题霸_经典高频编程题库_面试备战无压力_牛客网 (nowcoder.com) (99+条未读通知) yub4by的个人主页_牛客网 (nowcoder.com) 1、牛客OJ-SQL篇-非技术快速入门 # 方式1:使用distinct关键字去重 select distinc 阅读全文
posted @ 2021-09-27 10:35 yub4by 阅读(172) 评论(0) 推荐(0) 编辑
摘要:BLOG内相关链接 & 积累常用对比等 Java实现快速排序算法 - yub4by - 博客园 (cnblogs.com) 三大类设计模式、Spring中用到的设计模式 - yub4by - 博客园 (cnblogs.com) TCP的三次握手与四次挥手 - yub4by - 博客园 (cnblog 阅读全文
posted @ 2021-09-26 21:51 yub4by 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: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 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-26 15:19 yub4by 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-26 10:54 yub4by 阅读(90) 评论(0) 推荐(0) 编辑
摘要:1、NC1 大数加法 import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * @param s string字符串 表示第一个整数 * @param t st 阅读全文
posted @ 2021-09-24 17:22 yub4by 阅读(33) 评论(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 阅读(68) 评论(0) 推荐(0) 编辑
摘要:1、NC140 排序 import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 将给定数组排序 * @param arr int整型一维数组 待排序的数组 * @return in 阅读全文
posted @ 2021-09-22 15:39 yub4by 阅读(58) 评论(0) 推荐(0) 编辑
摘要:有谁去年做了中国移动校园招聘的技术类的笔试题吗,考些什么内容呢? - 知乎 (zhihu.com) 中国移动校园招聘全国统一考试笔试题库内容试卷历年考试真题.doc - 百度文库 (baidu.com) 【详细指南】中国移动校园招聘流程、时间、考试内容汇总 - 知乎 (zhihu.com) 2021 阅读全文
posted @ 2021-09-22 09:50 yub4by 阅读(61) 评论(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 阅读(38) 评论(0) 推荐(0) 编辑
摘要:(53条未读通知) 下面关于面向对象的一些理解哪些是错误的( &nbs_用友笔试题_牛客网 (nowcoder.com) 链接:https://www.nowcoder.com/questionTerminal/579b84ad450b4f31979505112f8f1459来源:牛客网 1、开闭原 阅读全文
posted @ 2021-09-21 12:16 yub4by 阅读(528) 评论(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 阅读(48) 评论(0) 推荐(0) 编辑
摘要:1、NC13 二叉树的最大深度 import java.util.*; /* * public class TreeNode { * int val = 0; * TreeNode left = null; * TreeNode right = null; * } */ public class S 阅读全文
posted @ 2021-09-19 16:19 yub4by 阅读(50) 评论(0) 推荐(0) 编辑
摘要:1、NC66 两个链表的第一个公共结点 /* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { public 阅读全文
posted @ 2021-09-18 13:37 yub4by 阅读(39) 评论(0) 推荐(0) 编辑
摘要:1、NC19 子数组的最大累加和问题 import java.util.*; public class Solution { /** * max sum of the subarray * @param arr int整型一维数组 the array * @return int整型 */ publi 阅读全文
posted @ 2021-09-17 13:34 yub4by 阅读(42) 评论(0) 推荐(0) 编辑
摘要:1、树的基本定义 2、树的相关术语 3、二叉树的基本定义 4、二叉查找树的创建 4.1 二叉树的结点类 private class Node { //存储键 public Key key; //存储值 private Value value; //记录左子结点 public Node left; / 阅读全文
posted @ 2021-09-17 09:55 yub4by 阅读(52) 评论(0) 推荐(0) 编辑
摘要:1、符号表API设计 2、符号表实现 package cn.itcast.algorithm.symbol; public class SymbolTable<Key,Value> { //记录首结点 private Node head; //记录符号表中元素的个数 private int N; p 阅读全文
posted @ 2021-09-17 09:40 yub4by 阅读(31) 评论(0) 推荐(0) 编辑
摘要:1、NC78 反转链表 /* public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; } }*/ public class Solution { public ListNod 阅读全文
posted @ 2021-09-16 12:54 yub4by 阅读(34) 评论(0) 推荐(0) 编辑
摘要:1 NC65 斐波那契数列 public class Solution { public int Fibonacci(int n) { //自己首次实现 /* if(n==0){ return 0; }else if(n==1){ return 1; }else{ return Fibonacci( 阅读全文
posted @ 2021-09-15 20:45 yub4by 阅读(50) 评论(0) 推荐(0) 编辑
摘要:1、顺序表 1.1 顺序表实现 package com.haifei.demo02linear; import java.util.Iterator; public class SequenceList <T>{ //存储元素的数组 private T[] eles; //记录当前顺序表中的元素个数 阅读全文
posted @ 2021-09-15 13:12 yub4by 阅读(34) 评论(0) 推荐(0) 编辑
摘要:选择题知识点积累 1、牛客收藏夹(选择,兴趣题&错题收藏) 实例成员包括实例变量和实例方法,也就是我们平时说的成员变量和成员方法。 静态变量也叫做类变量,静态方法也叫类方法,静态变量和静态方法统称静态成员也叫作类成员。 类成员是可以用类名.类变量或类方法来调用的。 反射机制主要提供了以下功能: 在运 阅读全文
posted @ 2021-09-15 09:43 yub4by 阅读(369) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2021-09-13 09:54 yub4by 阅读(26) 评论(0) 推荐(0) 编辑
摘要:1 简单排序 1.1 Comparable接口 package com.haifei.demo01sort; public class Student implements Comparable<Student>{ private String username; private int age; 阅读全文
posted @ 2021-09-10 16:23 yub4by 阅读(36) 评论(0) 推荐(0) 编辑
摘要:1 事前分析估算方法 不推荐 推荐 2 函数渐进增长 3 大O记法 4 常见的大O阶 总结 5 函数调用的时间复杂度分析 6 最坏情况 7 java中常见内存占用 8 算法的空间复杂度 阅读全文
posted @ 2021-09-10 16:16 yub4by 阅读(42) 评论(0) 推荐(0) 编辑
摘要:1 数据结构分类 2 算法初体验 阅读全文
posted @ 2021-09-10 16:01 yub4by 阅读(41) 评论(0) 推荐(0) 编辑
摘要:MobileNetV1引入深度可分离卷积作为传统卷积层的有效替代,深度可分卷积通过将空间滤波与特征生成机制分离,有效地分解传统卷积。深度可分卷积由两个独立的层定义:用于空间滤波的轻量级深度卷积和用于特征生成的1x1点卷积。具体来说就是深度卷积中一个卷积核通道上只有一维,负责特征图的一个通道,一个通道 阅读全文
posted @ 2021-09-04 14:45 yub4by 阅读(439) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示