码迷,mamicode.com
首页 >  
搜索关键字:make    ( 11169个结果
DOS当中的基本操作命令,如何切换磁盘,如何查看文件和文件夹,如何清屏,进入文件夹的命令,javac是什么意思,作用是什么?DOS如何建文件夹?退出文件夹?
如何切换磁盘:使用盘符+:举例 d: 如何查看文件和文件夹 dir/w 如何清屏: cls (clear screen) 进入文件夹的命令cd ,举例cd JDK javac是什么意思,c 是compile(编译),就是用这个程序编译Java文件 DOS如何建文件夹?md(make director ...
分类:编程语言   时间:2017-09-04 16:29:27    阅读次数:315
grid search
sklearn.metrics.make_scorer(score_func, greater_is_better=True, needs_proba=False, needs_threshold=False, **kwargs)[source]¶ >>> from sklearn.metrics ...
分类:其他好文   时间:2017-09-04 13:19:07    阅读次数:270
二叉搜索树
#include using namespace std; template class BSTree; template class BSTNode { friend class BSTree; public: BSTNode() : data(type()), leftChild(NULL), ... ...
分类:其他好文   时间:2017-09-04 12:00:42    阅读次数:241
CollectionViewMasonryLayout
// // JKMasonryLayout.h // CollectionViewCustomerLayout // // Created by Jack on 2017/7/3. // Copyright © 2017年 buakaw.lee.com.www. All rights reserve... ...
分类:其他好文   时间:2017-09-04 09:53:47    阅读次数:127
BZOJ3940: [Usaco2015 Feb]Censoring
给个长度<=1e5的串s,再给n个模板串总长不超1e5,每次把s中起始位置最早的一个模板串删掉,求最后剩的串。 AC自动机,开个栈记一下每次走到哪里,匹配成功后直接在栈里找到这一串的初始位置对应自动机上的节点,从而回到刚才的样子就行了。 1 #include<stdio.h> 2 #include< ...
分类:其他好文   时间:2017-09-03 23:35:28    阅读次数:162
A Knight's Journey
总时间限制: 1000ms 内存限制: 65536kB描述BackgroundThe knight is getting bored of seeing the same black and white squares again and again and has decided to make ...
分类:其他好文   时间:2017-09-03 22:09:58    阅读次数:179
NULL Pointer Dereference(转)
0x00 漏洞代码 可以看到漏洞代码中my_funptr函数指针是空指针(值为0x0),调用my_funptr可以执行0x0地址处的代码。 Makefile: 将漏洞代码在本地编译(make)之后,将null_dereference.ko文件放到busybox-1.19.4/_install/usr ...
分类:其他好文   时间:2017-09-03 14:54:20    阅读次数:320
centos7 安装codeblocks
一、所需软件 下载下面两个源码压缩包 1.codeblocks_16.01.tar.gz 2.wxWidgets-3.0.3.tar.bz2 二、预安装 检查当前系统是否已经安装以下工具及库包 make gettext autoconf>=2.5 automake>=1.7 libtool>=1.4 ...
分类:其他好文   时间:2017-09-03 14:13:00    阅读次数:263
hdu 6107--Typesetting(倍增)
题目链接 Problem Description Yellowstar is writing an article that contains N words and 1 picture, and the i-th word contains ai characters.The page width ...
分类:其他好文   时间:2017-09-03 13:23:16    阅读次数:265
462. Minimum Moves to Equal Array Elements II
Given a non-empty integer array, find the minimum number of moves required to make all array elements equal, where a move is incrementing a selected e ...
分类:其他好文   时间:2017-09-02 20:46:42    阅读次数:97
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!