Mybatis 批量更新多个字段值 Controller /** * * @Description: 生产物资-指标 发布接口 * @Creator: tangsw * @CreateTime: 2019-12-25 10:37:34 * @Modifier: * @ModifyTime: * @R ...
分类:
其他好文 时间:
2020-02-14 18:36:07
阅读次数:
67
网上DS12C887的文章涉及到时间的存储格式使用的都是二进制代码,究竟使用BCD码该如何操作?正好美心官网上有一篇文章。美心官网不稳定,先贴到这里,有时间再翻译。 原文链接 State Machine Logic in Binary-Coded Decimal (BCD)-Formatted Re ...
分类:
其他好文 时间:
2020-02-14 16:50:01
阅读次数:
81
文本预处理 读入文本 分词 建立字典,将每个词映射到一个唯一的索引(index) 将文本从词的序列转换为索引的序列,方便输入模型 读入文本 import collections import re def read_time_machine(): with open('/home/kesci/inp ...
分类:
其他好文 时间:
2020-02-14 11:01:10
阅读次数:
54
1.复习代码 .复习代码 LC 322 322. Coin Change Medium 2970100Add to ListShare You are given coins of different denominations and a total amount of money amount. ...
分类:
其他好文 时间:
2020-02-14 10:53:04
阅读次数:
94
1.基础 范围查询 between:select 字段 from 表名 where 字段 between 值 and 值; select id from stu where id between 1 and 3; in:select 字段 from 表名 where 字段 in (值,值); sel ...
分类:
数据库 时间:
2020-02-13 15:19:56
阅读次数:
89
此博客链接: 1.汉字统计 题目链接: Problem Description 统计给定文本文件中汉字的个数。 Input 输入文件首先包含一个整数n,表示测试实例的个数,然后是n段文本。 Output 对于每一段文本,输出其中的汉字的个数,每个测试实例的输出占一行。[Hint:]从汉字机内码的特点 ...
分类:
其他好文 时间:
2020-02-12 16:01:55
阅读次数:
69
当交叉类型的多个类型发生冲突时,例如: 冲突的属性类型会变为交叉类型,上例中的属性name会变为:string & number,鉴于string & number属性太过少见,已下例为示: interface ia { name: {attr1: string}; } interface ib { ...
分类:
其他好文 时间:
2020-02-12 12:57:26
阅读次数:
126
From: KU Leuven; ESAT-STADIUS比利时鲁汶大学 ?? How to model real-world multidimensional time series? especially, when these are sporadically observed data. ? ...
分类:
其他好文 时间:
2020-02-12 00:56:56
阅读次数:
82
此篇文章为实现《算法》一书中提到的大部分无向图算法,分为多篇, 即多个Java文件,可以直接复制,便于学习; 第二篇,java无向图的类实现,此篇主要列出实现的方法,需要参考其他类中方法(后续实现); 参考链接:https://www.cnblogs.com/xiaohuiduan/p/113522 ...
分类:
其他好文 时间:
2020-02-11 11:24:39
阅读次数:
72
Pycharm快捷键的使用 1、编辑(Editing) Ctrl + Space 基本的代码完成(类、方法、属性)Ctrl + Alt + Space 快速导入任意类Ctrl + Shift + Enter 语句完成Ctrl + P 参数信息(在方法中调用参数)Ctrl + Q 快速查看文档Shif ...
分类:
其他好文 时间:
2020-02-10 16:31:17
阅读次数:
71