码迷,mamicode.com
首页 >  
搜索关键字:nta    ( 5390个结果
java基本运算符解析(1)
java基本运算符解析(1) 基本加减乘除间运算 public class Demo1 { public static void main(String[] args) { int a = 20; int b = 30; int c = 40; int d = 25; System.out.prin ...
分类:编程语言   时间:2021-03-01 13:30:50    阅读次数:0
Java运算符(细节)
运算符细节 public class Demo1 { public static void main(String[] args) { int a = 10; int b = 20; System.out.println(""+a+b);//输出的是1020 System.out.println(a ...
分类:编程语言   时间:2021-02-26 13:17:42    阅读次数:0
SVM
1、scikit-learn SVC、NuSVC、和LinearSVC区别 scikit-learn中SVM的算法库分为两类,一类是分类的算法库,包括SVC, NuSVC,和LinearSVC 3个类。另一类是回归算法库,包括SVR, NuSVR,和LinearSVR 3个类。相关的类都包裹在skl ...
分类:其他好文   时间:2021-02-25 11:52:02    阅读次数:0
手机端--swiper一屏展示下个轮播的一半的效果
手机屏展示这样的效果,用swiper去实现, <template> <view class="container"> <view class="mas-promo-swiper-scroll-wrapper" :style="{ transform:'translateX(' +swiperMarg ...
分类:移动开发   时间:2021-02-25 11:49:26    阅读次数:0
fiddler弱网环境设置
Fiddler实现弱网的测试 无论是做web端还是app端的测试,我们都需要对弱网进行测试,对于弱网方法有很多种,如:Fiddler模拟弱网,控制电脑的网速等,今天介绍下Fiddler如何进行弱网测试。 1、Fiddler中启动弱网 打开Fiddler,Rules->Performance->勾选 ...
分类:其他好文   时间:2021-02-25 11:46:31    阅读次数:0
Oracle OCP 19c 认证1Z0-083考试题库(第2题)
Oracle OCP 19c 认证1Z0-083考试题库(第2题)-CUUG内部学员版083题库解析 2、Choose three. In which three situations can you use threshold server-generated alerts to help dia ...
分类:数据库   时间:2021-02-24 12:52:20    阅读次数:0
Linux常用命令 - nl命令详解
21篇测试必备的Linux常用命令,每天敲一篇,每次敲三遍,每月一循环,全都可记住!! https://www.cnblogs.com/poloyy/category/1672457.html 每次显示5行 more -5 test.txt 从第5行开始显示 more +5 test.txt 每次翻 ...
分类:系统相关   时间:2021-02-23 14:33:16    阅读次数:0
平衡二叉树
1、平衡二叉树出现的原因 二叉排序树的弊端 数列:1,2,3,4,5,6 创建出来的二叉排序树为: 2、平衡二叉树概念 平衡二叉搜索树 AVL树 保证查询效率最高 一颗空树或者是一颗左右两颗子树的高度差的绝对值不超过1, 并且左右子树分别也是平衡二叉树的树 2.1、二叉树结点 // 树结点 priv ...
分类:其他好文   时间:2021-02-20 12:44:09    阅读次数:0
C# 算法系列 - 贪婪算法(覆盖问题)
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { class Program { static void Main(string[] args) { /* 贪心算法(集 ...
分类:编程语言   时间:2021-02-20 12:42:12    阅读次数:0
Calculation of RTO in tcp and related open source implementation (Linux kernel, unbound) --- rtt, rttvar, cwnd, ssthresh
https://titanwolf.org/Network/Articles/Article?AID=6d260d47-8ba6-4fa6-ba2f-4dc4c2dd6800#gsc.tab=0 Calculation of RTO in tcp and related open source im ...
分类:系统相关   时间:2021-02-20 12:07:41    阅读次数:0
5390条   上一页 1 ... 13 14 15 16 17 ... 539 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!