Given a string, remove all leading/trailing/duplicated empty spaces. Assumptions: The given string is not null. Examples: “ a” --> “a” “ I love MTV ” ...
分类:
其他好文 时间:
2020-04-26 10:56:45
阅读次数:
82
Given a linked list, check whether it is a palindrome. Examples: Input: 1 -> 2 -> 3 -> 2 -> 1 -> null output: true. Input: 1 -> 2 -> 3 -> null output: ...
分类:
其他好文 时间:
2020-04-26 09:15:19
阅读次数:
66
软件的体系结构 1.C/S结构 Client/Server 客户端/服务端 VB,Delphi,VC++,C ,Java awt/swing:比如桌面QQ,扫雷,拱猪等运行在桌面的程序. 特点:在服务端主要就是一个数据库,把所有业务逻辑以及界面的渲染操作交给客户端完成. 优点:安全,用户界面很丰富, ...
分类:
其他好文 时间:
2020-04-25 19:20:38
阅读次数:
73
cmake_minimum_required(VERSION 3.5) project(cmake_examples_install) ############################################################ # Create a library ## ...
分类:
其他好文 时间:
2020-04-25 16:48:02
阅读次数:
73
一、Cypress理解 End-to-End 基于js 二、安装 1 npm install cypress --save-dev 打开 用VScode打开目录文件 在examples目录下新建baidu.js文件 1 describe('My First Test', function () { ...
分类:
其他好文 时间:
2020-04-24 19:49:00
阅读次数:
1213
Hadoop的官方案例都在mapreduce.jar文件夹中,提供了mapreduce的基本功能,可用于计算,eg:pi值,计算文档中的字数等 官方案例都在 hadoop-mapreduce-examples-2.7.3.jar 这个jar包中。 命令:hadoop jar ./hadoop-2.7 ...
分类:
其他好文 时间:
2020-04-24 01:40:56
阅读次数:
107
前言 老大说以后会用 next 来做一下 SSR 的项目,让我们有空先学学。又从 0 开始学习新的东西了,想着还是记录一下学习历程,有输入就要有输出吧,免得以后给忘记学了些什么~ Next轻量级框架与主流工具的整合 github地址:https://github.com/code-coder/nex ...
分类:
其他好文 时间:
2020-04-23 15:06:14
阅读次数:
74
1、eval_config下的num_examples 的含义(类似ssd_mobilenet_v1_coco.config中的配置) 个人比较倾向于下面这种解释,但是 没有找到官方的说法:(What does _num_examples_ 2000_ mean in TensorFlow obje ...
分类:
其他好文 时间:
2020-04-21 15:10:50
阅读次数:
74
MNIST_data数据 百度网盘链接:https://pan.baidu.com/s/19lhmrts-vz0-w5wv2A97gg提取码:cgnx # -*- coding: UTF-8 -*- import tensorflow as tf from tensorflow.examples.t ...
分类:
其他好文 时间:
2020-04-19 18:06:58
阅读次数:
96
Examples input Copy 31 21 3 output Copy 0 input Copy 51 22 33 44 5 output Copy 2 Note Tree definition: https://en.wikipedia.org/wiki/Tree_(graph_theor ...
分类:
其他好文 时间:
2020-04-19 00:30:02
阅读次数:
83