Tensoflw.js 02 模型与内存管理(易懂) 参考 W3Cschool 文档:https://www.w3cschool.cn/tensorflowjs/ 本文主要翻译一些英文注释,添加通俗的注释,记录新手使用遇到的小问题,去除不必要的部分,帮助新手快速入门 上一篇介绍了,Tensorflo ...
分类:
Web程序 时间:
2018-10-24 12:09:46
阅读次数:
147
快慢指针简述 快慢指针经常用于链表(linked list)中环(Cycle)相关的问题。 1. 快指针(fast pointer)和慢指针(slow pointer)都从链表的head出发。 1. slow pointer每次移动一格,而快指针每次移动两格。 1. 如果快慢指针能相遇,则证明链表中 ...
分类:
编程语言 时间:
2018-10-23 14:39:59
阅读次数:
209
PPSM06S70: Add moddate EDITSPRINTJOB: MAX(TO_CHAR(ETRN.MODDATE, 'yyyy/mm/dd/HH24:MI AM')) ACTUAL_SHIPDATE 4.Test Scenario (1) :Query SQL Test DN:80165 ...
分类:
其他好文 时间:
2018-10-22 12:52:47
阅读次数:
157
[TOC] 一、Markdown简介 Markdown是一种可以使用普通文本编辑器编写的标记语言,通过简单的标记语法,它可以使普通文本内容具有一定的格式。实际上我们可以理解为Markdown是一种为了让人们专注于文章内容创作而大大缩短排版时间的一种”排版“语言。 因为简单易用、结构清晰、跨平台(其实 ...
分类:
其他好文 时间:
2018-10-20 00:15:40
阅读次数:
189
Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space? ...
分类:
其他好文 时间:
2018-10-18 16:52:36
阅读次数:
111
1、利用SQLPLUS连接oracle数据库 sqlplus s16436213/s16436213@orcl 2、设置SQLPLUS的环境变量 --pagesize show pagesize; set pagesize is 90; select * from emp; --linesize s ...
分类:
数据库 时间:
2018-10-18 14:00:20
阅读次数:
140
Andrewid the Android is a galaxy-famous detective. He is now chasing a criminal hiding on the planet Oxa-5, the planet almost fully covered with water ...
分类:
编程语言 时间:
2018-10-15 18:16:43
阅读次数:
169
题目 Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Given linked list head = [4,5,1,9], wh ...
分类:
其他好文 时间:
2018-10-14 14:08:12
阅读次数:
160