码迷,mamicode.com
首页 >  
搜索关键字:partial    ( 1590个结果
C#跨窗体传值方法
方法1.通过构造函数传值 Form1: Form2 data = new Form2();//实例化对象 data.Name1 = textBox1.Text;//给对象赋值 data.Show(); Form2: public partial class Form2 : Form { TextBo ...
分类:Windows程序   时间:2018-11-03 02:16:18    阅读次数:158
区块链教程Fabric1.0源代码分析Ledger historydb历史数据库
1、historydb概述historydb,用于存储所有块读写集中写集的内容。代码分布在core/ledger/kvledger/history/historydb目录下,目录结构如下:historydb.go,定义核心接口HistoryDBProvider和HistoryDB。histmgr_helper.go,historydb工具函数。historyleveldb目录,historydb基
分类:数据库   时间:2018-11-01 19:57:27    阅读次数:129
个人项目3:加强版四则运算
需求 1.实现在线答题 2.答题结束后,可以判断对错 3.并将错题的结果保存起来 设计思想 1.设计窗口:使用了dataGridView表格控件,4个textBox控件,5个button控件和若干Label窗口控件 2.程序编辑:(1)在上次的四则运算的基础上,将四则运算的式子显示在“显示”按钮的程 ...
分类:其他好文   时间:2018-11-01 01:02:52    阅读次数:126
mysqldump导出数据出现问题
利用mysqldump导出数据时提示warning,A partial dump from a server that has GTIDsubt@ubt-All-Series:~$ mysqldump -uroot -p sdxdb > sdxdb.sqlWarning: A partial dum ...
分类:数据库   时间:2018-10-31 15:41:47    阅读次数:198
【HDOJ5534】Partial Tree(树,背包DP)
题意:有一棵n个点的形态不定的树,每个度为i的节点会使树的权值增加f[i],求树的最大权值 n<=2015,0<=f[i]<=1e4 思路:对不起队友,我再强一点就能赛中出这题了 显然每个点的度至少为1,且度数为1的节点至少有2个(From 队友) 有一个结论:给每个点都分配1个度,剩余的度任意分配 ...
分类:其他好文   时间:2018-10-30 22:21:50    阅读次数:208
训练神经网络的一般步骤
Training a Neural Network Randomly initialize the weights Implement forward propagation to get hΘ?(x(i)) for any x(i) Implement the cost function Impl ...
分类:其他好文   时间:2018-10-29 22:59:35    阅读次数:232
VS2017 C#用halcon采集本地图片
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2018-10-29 14:14:27    阅读次数:430
Algs4-1.2.19字符串解析
1.2.19字符串解析。为你在练习1.2.13中实现的Date和Transaction类型编写能够解析字符串数据的构造函数。它接受一个String参数指定的初始值,格式如表1.2.20所示:Partial solution:public Date(String date){String[] fiel ...
分类:其他好文   时间:2018-10-25 14:14:01    阅读次数:223
梯度下降算法与Normal equation
Normal equation: Method to solve for θ analytically 正规方程:分析求解θ的方法 对于损失函数 \[J\left( {{\theta _0},{\theta _1},...,{\theta _n}} \right) = \frac{1}{{2m}}\ ...
分类:编程语言   时间:2018-10-24 01:02:04    阅读次数:192
2018-2019 ICPC, NEERC, Southern Subregional Contest (Online Mirror) Partial Solution
从这里开始 题目列表 瞎扯 Problem A Find a Number Problem B Berkomnadzor Problem C Cloud Computing Problem D Garbage Disposal Problem E Getting Deals Done Problem ...
分类:其他好文   时间:2018-10-21 22:56:31    阅读次数:281
1590条   上一页 1 ... 33 34 35 36 37 ... 159 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!