码迷,mamicode.com
首页 >  
搜索关键字:determine    ( 2744个结果
LeetCode #234. Palindrome Linked List 链表 栈 链表逆置
Description Given a singly linked list, determine if it is a palindrome. Example 1: Example 2: Follow up: Could you do it in O(n) time and O(1) space? ...
分类:其他好文   时间:2020-05-10 15:24:52    阅读次数:77
IDA逆向常用宏定义
/* This file contains definitions used by the Hex-Rays decompiler output. It has type definitions and convenience macros to make the output more reada ...
分类:其他好文   时间:2020-05-08 16:13:24    阅读次数:107
python实现线性回归之弹性网回归
弹性网回归是lasso回归和岭回归的结合,其代价函数为: 若令,则 由此可知,弹性网的惩罚系数恰好为岭回归罚函数和Lasso罚函数的一个凸线性组合.当α=0时,弹性网回归即为岭回归;当 α=1时,弹性网回归即为Lasso回归.因此,弹性网回归兼有Lasso回归和岭回归的优点,既能达到变量选择的目的, ...
分类:编程语言   时间:2020-04-30 15:52:59    阅读次数:276
Leetcode202 Happy number
Description Write an algorithm to determine if a number n is "happy". A happy number is a number defined by the following process: Starting with any p ...
分类:移动开发   时间:2020-04-30 13:32:04    阅读次数:91
RSS/PSS/VSZ
RSS 是常驻内存集(Resident Set Size),表示该进程分配的内存大小。 RSS 不包括进入交换分区的内存。 RSS 包括共享库占用的内存(只要共享库在内存中) RSS 包括所有分配的栈内存和堆内存。 VSZ 表示进程分配的虚拟内存。 VSZ 包括进程可以访问的所有内存,包括进入交换分 ...
分类:其他好文   时间:2020-04-23 21:20:12    阅读次数:66
路径总和
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. N ...
分类:其他好文   时间:2020-04-22 10:01:42    阅读次数:64
All about that base
The base (or radix) of a positional numeral system is the number of symbols that can be used to represent a number in that system. The base 1010 syste ...
分类:其他好文   时间:2020-04-20 11:47:10    阅读次数:74
【python实现卷积神经网络】卷积层Conv2D实现(带stride、padding)
关于卷积操作是如何进行的就不必多说了,结合代码一步一步来看卷积层是怎么实现的。 代码来源:https://github.com/eriklindernoren/ML-From-Scratch 先看一下其基本的组件函数,首先是determine_padding(filter_shape, output ...
分类:编程语言   时间:2020-04-15 17:47:17    阅读次数:67
centos7安装Apache
实验环境 用的是阿里云上面的服务器 安装Apache 设置httpd服务开机启动 启动Apache 查看Apache的状态 确认80端口的状态 查看Apache的版本 验证安装 用浏览器打开服务器的IP地址,将看到默认的Apache欢迎页面表示成功 Apache命令 停止Apache服务 启动Apa ...
分类:Web程序   时间:2020-04-12 16:47:25    阅读次数:79
[LeetCode] 202. Happy Number
Write an algorithm to determine if a number is "happy". A happy number is a number defined by the following process: Starting with any positive intege ...
分类:移动开发   时间:2020-04-06 09:24:09    阅读次数:91
2744条   上一页 1 ... 3 4 5 6 7 ... 275 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!