第九章 动态规划part12 309.最佳买卖股票时机含冷冻期 class Solution {public int maxProfit(int[] prices) {//0代表持股票,1代表保持卖出状态,2代表卖出股票。3代表冷冻int[][] dp new int[prices.length][4];dp[0][0] -prices[0];for(int i 1 ; …
Es数据格式和Mysql对比
ElasticSearch index(索引) Type(类型) Documents(文档) Fields(字段)
MySQL Databases(数据库) Table(表) Row(行) Column(列)
倒排索引
正向索引,在Mysql中使用的索引就是正排索引,索引对应的就是直接的数据
例子:
id content 1 my name is …