码迷,mamicode.com
首页 > 2018年07月08日 > 全部分享
python-map/reduce
Python内建了map()和reduce()函数。 如果你读过Google的那篇大名鼎鼎的论文“MapReduce: Simplified Data Processing on Large Clusters”,你就能大概明白map/reduce的概念。 我们先看map。map()函数接收两个参数, ...
分类:编程语言   时间:2018-07-08 11:48:32    阅读次数:213
大数据挖掘基本概念
无感知营销 1,训练集、测试集 机器学习中训练集、验证集和测试集的作用 2,过拟合、欠拟合 大白话给你说清楚什么是过拟合、欠拟合以及对应措施 ...
分类:其他好文   时间:2018-07-08 11:16:12    阅读次数:160
(Java) LeetCode 25. Reverse Nodes in k-Group —— k个一组翻转链表
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is a positive integer and is less than or equal to ...
分类:编程语言   时间:2018-07-08 11:16:06    阅读次数:161
DHCP 服务搭建
Linux DHCP
分类:其他好文   时间:2018-07-08 11:15:57    阅读次数:144
(Java) LeetCode 206. Reverse Linked List —— 反转链表
Reverse a singly linked list. Example: Follow up: A linked list can be reversed either iteratively or recursively. Could you implement both? ...
分类:编程语言   时间:2018-07-08 11:15:50    阅读次数:154
Go语言开发学习教程
Go语言开发学习教程Go语言开发学习教程目录如下:Go语言开发(一)、Go语言简介http://blog.51cto.com/9291927/2126775Go语言开发(二)、Go语言基础http://blog.51cto.com/9291927/2127825Go语言开发(三)、Go语言内置容器http://blog.51cto.com/9291927/2129969Go语言开发(四)、Go语言
分类:编程语言   时间:2018-07-08 11:15:44    阅读次数:126
POJ2115
C Looooops Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 30895 Accepted: 8939 Description A Compiler Mystery: We are given a C-language s ...
分类:其他好文   时间:2018-07-08 11:15:36    阅读次数:151
Linux 系统磁盘挂载信息文件
系统磁盘挂载信息文件 设置文件系统挂载信息的文件(etc/fstab),使得开机能够自动挂载磁盘分区文件系统挂载:方法一: 直接挂在,临时生效 1. #格式化系统(没有格式化就没有文件系统,放不了数据) dd if=/dev/zero of=/dev/sdb1 bs=4096 count=10 --... ...
分类:系统相关   时间:2018-07-08 11:15:21    阅读次数:287
多序列比对后可视化之texshade
一 :准备工作 1)中文的 LaTeX - CTEX 2)LaTeX 的*.tex 的编辑工具-Texmarker 3)TEXshade宏包 二:安装 1) 直接双击运行下载的CTEX,安装过程中,可以不安装Ghostscript、GSview和WinEdt三个组件 2)双击安装Texmaker,直 ...
分类:其他好文   时间:2018-07-08 11:15:12    阅读次数:601
(Java) LeetCode 24. Swap Nodes in Pairs —— 两两交换链表中的节点
Given a linked list, swap every two adjacent nodes and return its head. Example: Note: Your algorithm should use only constant extra space. You may no ...
分类:编程语言   时间:2018-07-08 11:15:01    阅读次数:215
简单了解一下linux系统命令有哪些?
系统信息arch显示机器的处理器架构(1)uname-m显示机器的处理器架构(2)uname-r显示正在使用的内核版本dmidecode-q显示硬件系统部件–(SMBIOS/DMI)hdparm-i/dev/hda罗列一个磁盘的架构特性hdparm-tT/dev/sda在磁盘上执行测试性读取操作cat/proc/cpuinfo显示CPUinfo的信息cat/proc/interrupts显示中断c
分类:系统相关   时间:2018-07-08 11:14:54    阅读次数:178
Directed Graph Loop detection and if not have, path to print all path.
这里总结针对一个并不一定所有点都连通的general directed graph, 去判断graph里面是否有loop存在, 收到启发是因为做了[LeetCode] 207 Course Schedule_Medium tag: BFS, DFS, 这个题实际上就是监测directed graph ...
分类:其他好文   时间:2018-07-08 11:14:46    阅读次数:168
移动硬盘由于IO设备错误,无法运行此项请求文件怎么寻回
由于IO设备错误,无法运行此项请求说明这个盘的文件系统结构损坏了。在平时如果数据不重要,那么可以直接格式化就能用了。但是有的时候里面的数据很重要,那么就必须先恢复出数据再格式化。具体恢复方法可以看正文了解(不格式化的恢复方法)
分类:移动开发   时间:2018-07-08 11:14:40    阅读次数:215
设置nginx开机自启
今天测试zabbix开机后发现nginx没有运行,检查nginx没有开机自启命令,遂产生制作一个nginx开机自启的文件方便开机自启,经测试nginx开机自启可行。1.建文件[root@zabbix~]#vim/lib/systemd/system/nginx.service[Unit]Description=nginxAfter=network.target[Service]Type=forki
分类:其他好文   时间:2018-07-08 11:14:31    阅读次数:191
C++语言学习(二)——C++对C语言基础语法的扩展
C++语言学习(二)——C++对C语言基础语法的扩展C++是基于C语言扩展发展而来的面向对象的程序设计语言,本文将主要讨论C++语言基于C语言扩展的方面。一、实用性增强C语言中变量的定义必须在作用域开始的位置进行定义。#include<stdio.h>intmain(intargc,char*argv[]){inti;//定义变量intj;//使用变量for(i=0;i<10;i
分类:编程语言   时间:2018-07-08 11:14:21    阅读次数:188
[CF85E] Guard Towers - 二分+二分图
题目描述 In a far away kingdom lives a very greedy king. To defend his land, he built n n n guard towers. Apart from the towers the kingdom has two armies ...
分类:其他好文   时间:2018-07-08 11:14:12    阅读次数:249
死锁案例二
1、环境说明MySQL5.6.33,隔离级别是RR。表结构及数据:Create table t1(id int not null primary key auto_increment,c1 int,c2 int,c3 int, unique key(c1),unique
分类:其他好文   时间:2018-07-08 11:14:03    阅读次数:160
1168条   上一页 1 ... 55 56 57 58 59 60 61 ... 69 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!