码迷,mamicode.com
首页 >  
搜索关键字:algorithms    ( 784个结果
回文检查器
最近在刷 freeCodeCamp 上面的题目,遂想着把一些 js 的题目记录下来。 原题: JavaScript Algorithms and Data Structures Projects: Palindrome Checker Return true if the given string ...
分类:其他好文   时间:2020-07-12 15:05:44    阅读次数:70
数据结构和算法动态可视化
数据结构和算法动态可视化 https://visualgo.net/zh 数据结构可视化:https://www.cs.usfca.edu/~galles/visualization/Algorithms.html ...
分类:编程语言   时间:2020-07-04 22:31:51    阅读次数:78
Data structures and algorithms in Java, Part 1: Overview
Get an overview of data structures and algorithms and how they work together in your Java programs Java programmers use data structures to store and o ...
分类:编程语言   时间:2020-07-03 12:55:18    阅读次数:74
策略模式
名称: 策略模式(Strategy Pattern) 问题: The intent of the Strategy Pattern is to define a family of algorithms, encapsulate each algorithm, and make them inter ...
分类:其他好文   时间:2020-06-28 20:11:35    阅读次数:55
梯度下降常见算法 BGD, SGD, MBGD 简介
参考文献 An overview of gradient descent optimization algorithms 梯度下降 GD(Gradient Descent) 梯度方向是函数变化率最大的方向,是函数增长最快的方向。 梯度的反方向是函数减少的最快方向。 ex: 从山上走到谷底 \(x_j ...
分类:编程语言   时间:2020-06-27 09:53:45    阅读次数:125
TLS1.3会话密钥产生过程
首先了解 cipher_suites:包含一个秘钥交换算法、一个加密算法、一个校验算法mdsignature_algorithms:用于证书签名算法group:用于秘钥交换参数选择(此参数为公开参数) Client KeyShare 和 Server KeyShare、根据group。两边就可以各自 ...
分类:其他好文   时间:2020-06-26 10:47:23    阅读次数:133
[ML L3] SVM Intro
A support vector machine (SVM) is a supervised machine learning model that uses classification algorithms for two-group classification problems. After ...
分类:其他好文   时间:2020-06-26 10:39:26    阅读次数:50
Guide to advanced algorithms---位运算
与 x&y 或 x|y 非!x 异或 x^y 补码 ~x+1是x的补码 memset(a,0x3f,sizeof(a)) 无穷大 左移 在二进制表示下把数字同时向左移动,低位以0填充,高位越界后舍弃 1<<n=2^n n<<1=2n 算数右移 在二进制补码表示下把数字同时向右移动,高位以符号位填充, ...
分类:其他好文   时间:2020-06-24 21:50:58    阅读次数:54
JWT帮助类(相关方法)
注意:首先安装JWT程序包 using System;using System.Collections.Generic;using System.Linq;using System.Web; using JWT;using JWT.Algorithms; //加密算法using JWT.Builde ...
分类:其他好文   时间:2020-06-18 16:04:10    阅读次数:75
Improving DNNs Hyperparameter tuning-Regularization and Optimization(week3)Tensorflow
TensorFlow Tutorial Initialize variables Start your own session Train algorithms Implement a Neural Network 1. Exploring the Tensorflow Library To sta ...
分类:其他好文   时间:2020-06-12 20:31:54    阅读次数:80
784条   上一页 1 2 3 4 5 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!