码迷,mamicode.com
首页 >  
搜索关键字:ike    ( 1810个结果
PAT 1045 Favorite Color Stripe (30分) 动态规划
题目 Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off ...
分类:其他好文   时间:2020-07-02 19:53:26    阅读次数:70
Python第四章
4.1 遍历整个列表 magicians = ['alice', 'david', 'carolina'] for magician in magicians: print(magician) 4.1.2 在for循环中执行更多的操作 magicians = ['alice', 'david', ' ...
分类:编程语言   时间:2020-06-30 10:25:07    阅读次数:95
[Functional Programming] Function modelling -- 8. Compose Functors
Path: Compose Functors -> Monad Transformers -> Free Monad Compose Functors: Let's say we have a Task holding a Either. And we want simply apply a .ma ...
分类:其他好文   时间:2020-06-29 15:05:19    阅读次数:52
Linux-AWK命令
参考菜鸟教程 简介 AWK 是一种处理文本文件的语言,是一个强大的文本分析工具。 之所以叫 AWK 是因为其取了三位创始人 Alfred Aho,Peter Weinberger, 和 Brian Kernighan 的 Family Name 的首字符。 语法 awk [选项参数] 'script ...
分类:系统相关   时间:2020-06-29 00:45:52    阅读次数:128
命令模式
名称: 命令模式(Command Pattern) 问题: The Command pattern encapsulates a request in an object, which enables you to store the command, pass the command to a m ...
分类:其他好文   时间:2020-06-28 22:12:34    阅读次数:80
Java HashMap Tutorial With Examples
Java HashMap is a hash table based implementation of Java’s Map interface. A Map, as you might know, is a collection of key-value pairs. It maps keys ...
分类:编程语言   时间:2020-06-28 15:03:46    阅读次数:64
FreeSql 使用 ToTreeList/AsTreeCte 查询无限级分类表
关于无限级分类 第一种方案: 使用递归算法,也是使用频率最多的,大部分开源程序也是这么处理,不过一般都只用到四级分类。 这种算法的数据库结构设计最为简单。category表中一个字段id,一个字段fid(父id)。这样可以根据WHERE id = fid来判断上一级内容,运用递归至最顶层。 分析:通 ...
分类:数据库   时间:2020-06-28 09:19:40    阅读次数:56
Oracle character set
Based on Oracle, processing an English character takes 1 byte, but 3 bytes for a Chinese character. For example: select ename, length(ename), lengthb( ...
分类:数据库   时间:2020-06-27 20:30:11    阅读次数:74
凸集 凸函数 凸优化 概念
凸集 集合C内任意两点间的线段也均在集合C内,则称集合C为凸集。 \(\forall x_1, x_2 \in C, \forall \theta \in [0,1], 则 x= \theta * x_1 + (1-\theta)*x_2 \in C\)\ 凸函数定义 f为定义在区间I上的函数,若对 ...
分类:其他好文   时间:2020-06-26 23:48:53    阅读次数:76
RSA
已知p,q,e求d p=473398607161 q=4511491 e=17 n = (p-1) * (q-1) def extendedEuclid(a, b): if b == 0: return 1, 0 else: x, y= extendedEuclid(b, a % b) x, y = ...
分类:其他好文   时间:2020-06-25 19:08:44    阅读次数:66
1810条   上一页 1 ... 11 12 13 14 15 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!