码迷,mamicode.com
首页 >  
搜索关键字:sig    ( 4633个结果
Oracle数据库用户权限添加对表的创建权限
使用用户对数据库创建数据表时报权限不足解决方法 grant connect, resource , dba to FORMDESIGN; grant create session to FORMDESIGN; grant create session,create table to FORMDESI ...
分类:数据库   时间:2021-05-24 04:31:11    阅读次数:0
Qt 基于TCP的Socket编程
1、在工程文件中加入QT += network 2、服务器除了使用到了QTcpSocket类,还需要用到QTcpSever类 (1)创建QTcpSever对象 tcpServer = new QTcpServer(this); 2)监听端口 tcpServer->listen(QHostAddres ...
分类:其他好文   时间:2021-05-24 01:07:32    阅读次数:0
题解 P7585 [COCI2012-2013#1] LJUBOMORA
题解 P7585 [COCI2012-2013#1] LJUBOMORA ...
分类:其他好文   时间:2021-05-24 00:08:31    阅读次数:0
PAT 1006 sign in and sign out
#include<cstdio> #include<cstring> using namespace std; char firstper[20]; char lastper[20]; char firsttime[20]="23:59:59"; char lasttime[20]="00:00:0 ...
分类:其他好文   时间:2021-04-27 14:33:17    阅读次数:0
linux下信号的响应过程
1.内核为每个进程给了两个位图,一个为mask(默认为1),一个为pending(默认为0) 2.当内核态转到用户态时,检测是否有信号,用mask & pending得到结果,如果没有接到信号,那么结果为32位的0,此时通过内核中保存的地址返回原进程。 3.当有一个信号来时,pending中对应位置 ...
分类:系统相关   时间:2021-04-22 16:17:45    阅读次数:0
【分布式文件系统】minio资源汇总
https://github.com/lishen2020/miniohttps://www.cnblogs.com/lishen2021/p/14681182.htmlhttps://www.cnblogs.com/zimug/archive/2020/08/06/13444086.htmlhtt ...
分类:其他好文   时间:2021-04-22 15:32:50    阅读次数:0
JasperReports with Spring
1. Overview JasperReports is an open source reporting library that enables users to create pixel-perfect reports that can be printed or exported in ma ...
分类:编程语言   时间:2021-04-21 11:48:33    阅读次数:0
第一类斯特林数·列
\(\text{Problem}:\)第一类斯特林数·列 \(\text{Solution}:\) 与计算第二类斯特林数一列的方法类似的,设 \(F(x)\) 表示第 \(1\) 列第一类斯特林数的 \(\text{EGF}\),有: \[ F(x)=\sum\limits_{i=1}^{\inft ...
分类:其他好文   时间:2021-04-21 11:45:50    阅读次数:0
PyTorch深度学习实践 (六)---逻辑斯蒂回归
(1)相较于线性回归,使用激活函数sigmoid函数,将结果以0-1之间呈现 (2)损失函数计算:cross-entropy交叉熵 1 import torch 2 3 #data 4 x_data = torch.Tensor([[1.0], [2.0], [3.0]]) 5 y_data = t ...
分类:其他好文   时间:2021-04-19 16:02:51    阅读次数:0
POJ1631 - Bridging signals - LIS优化 - 二分+dp - nlogn
##题意 求最长上升子序列长度 ##思路 本题直接用dp写,会超时,需要优化 优化办法:二分+dp ##AC代码 //4test n //6 p //4 2 6 3 1 5 ->3 //10 //2 3 4 5 6 7 8 9 10 1 ->9 //8 //8 7 6 5 4 3 2 1 ->1 / ...
分类:其他好文   时间:2021-04-19 14:47:09    阅读次数:0
4633条   上一页 1 ... 3 4 5 6 7 ... 464 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!