最近在刷 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
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
参考文献 An overview of gradient descent optimization algorithms 梯度下降 GD(Gradient Descent) 梯度方向是函数变化率最大的方向,是函数增长最快的方向。 梯度的反方向是函数减少的最快方向。 ex: 从山上走到谷底 \(x_j ...
分类:
编程语言 时间:
2020-06-27 09:53:45
阅读次数:
125
首先了解 cipher_suites:包含一个秘钥交换算法、一个加密算法、一个校验算法mdsignature_algorithms:用于证书签名算法group:用于秘钥交换参数选择(此参数为公开参数) Client KeyShare 和 Server KeyShare、根据group。两边就可以各自 ...
分类:
其他好文 时间:
2020-06-26 10:47:23
阅读次数:
133
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
与 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程序包 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
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