ICode9

精准搜索请尝试: 精确搜索
  • AE2ACE coursework2019-12-14 19:00:07

    AE2ACE coursework 2019-2020This coursework is worth 25% of the final mark.Stock Trading & Algorithm Correctness.Deadline: 29 November 2019 16:00Part I: Stock Trading (12 marks)Warning: If program cannot be complied, it will result in an immediate zero

  • python调用tushare港股通每月成交统计2019-11-06 11:01:15

    接口:ggt_monthly 描述:港股通每月成交信息,数据从2014年开始 限量:单次最大1000 积分:用户积5000积分可调取,请自行提高积分,具体请参阅本文最下方积分获取办法 注:tushare库下载和初始化教程,请查阅我之前的文章 输入参数 名称      |      类型      |      必选      |

  • PAT 乙级 1039.到底买不买 C++/Java2019-10-21 21:04:07

    题目来源 小红想买些珠子做一串自己喜欢的珠串。卖珠子的摊主有很多串五颜六色的珠串,但是不肯把任何一串拆散了卖。于是小红要你帮忙判断一下,某串珠子里是否包含了全部自己想要的珠子?如果是,那么告诉她有多少多余的珠子;如果不是,那么告诉她缺了多少珠子。 为方便起见,我们用[0-9]

  • 若是前台接收的数据为null的不进行传递2019-10-12 12:54:32

    1.在实体类上添加注解 @JsonInclude(JsonInclude.Include.NON_NULL)   2.在yml中进行配置全局 spring: datasource: driver-class-name: com.mysql.jdbc.Driver username: root password: 123456 url: jdbc:mysql://192.168.30.113/sell?characterEncoding=utf-8

  • CF1234A Equalize Prices2019-10-03 17:03:12

    洛谷 CF1234A Equalize Prices Again 洛谷传送门 题目描述 You are both a shop keeper and a shop assistant at a small nearby shop. You have nn goods, the ii -th good costs a_i*a**i* coins. You got tired of remembering the price of each product when customers ask

  • PAT B1020 月饼2019-09-25 13:00:07

    #include<iostream>#include<algorithm>using namespace std;struct mooncake{ double store; double sell; double price;} cake[1010];bool cmp(mooncake a,mooncake b){ return a.price>b.price;}int main(){ int n; double D; cin>>n>>D; for(

  • 122. Best Time to Buy and Sell Stock II2019-09-22 09:38:19

    这道题里面可以买卖股票多次。 这里我加入了sell price。 基本上就是有这个特性:如果看到价格比卖出价格低,就应该换手,这样肯定比不换手得到的利润要高。 Greedy算法就可以解决这个问题。 class Solution: def maxProfit(self, prices: List[int]) -> int: # Ini

  • 121. Best Time to Buy and Sell Stock2019-09-22 09:02:08

    Traverse list, 不断检查是不是有新的更好的deal,定义为,更低的买入价,以及刷新后的卖出价,而且sell_price-lowest_price>原来的max_profit. class Solution: def maxProfit(self, prices: List[int]) -> int: # This is time serial data # Note that thi

  • Leetcode之动态规划(DP)专题-309. 最佳买卖股票时机含冷冻期(Best Time to Buy and Sell Stock with Cooldown)2019-09-08 17:53:09

    Leetcode之动态规划(DP)专题-309. 最佳买卖股票时机含冷冻期(Best Time to Buy and Sell Stock with Cooldown) 股票问题: 309. 最佳买卖股票时机含冷冻期 714. 买卖股票的最佳时机含手续费   给定一个整数数组,其中第 i 个元素代表了第 i 天的股票价格 。​ 设计一个算法计算出最

  • Java 中的动态代理2019-08-22 20:55:25

    一、概述 1. 什么是代理   我们大家都知道微商代理,简单地说就是代替厂家卖商品,厂家“委托”代理为其销售商品。关于微商代理,首先我们从他们那里买东西时通常不知道背后的厂家究竟是谁,也就是说,“委托者”对我们来说是不可见的;其次,微商代理主要以朋友圈的人为目标客户,这就相当于

  • 接口文档22019-08-21 12:03:23

    目录 API 商品列表 创建订单 订单列表 查询订单详情 取消订单 获取openid 支付订单 获取产品评价列表 获取全部评价 创建评价 后端 订单列表 取消订单 订单详情 订单完结 商品列表 商品上架 商品下架 商品类目和商品详情 商品修改提交 商品类目列表 新增/保存类目 商铺信息 保

  • 1070 Mooncake (25 分) 贪心2019-08-05 16:07:38

    Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in traditional mooncakes according to the region’s culture. Now given the inventory amounts and the prices of all ki

  • [动态规划] leetcode 309 Best Time to Buy and Sell Stock with Cooldown2019-08-04 19:00:23

    problem:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/         这道题有好几个变种。对于没有cooldown的题目而言,只需要考虑第i天,当前持有股票的最大收益和当前不持有股票的最大收益。而引入cooldown后,我们也需要引入新的状态:         h

  • hive按当天日期建立分区表 | 动态往日期分区插入数据2019-07-18 19:42:23

    hive建立分区表,以当天日期(“2014-08-15”)作为分区依据,hql如下: CREATE EXTERNAL TABLE IF NOT EXISTS product_sell( category_id BIGINT, province_id BIGINT, product_id BIGINT, price DOUBLE, sell_num BIGINT ) PARTITIONED BY (ds string) ROW FORMAT DELIMITED FIELDS TE

  • leetcode刷题121 买卖股票的最佳时机 Best Time to Buy and Sell Stock(简单) Python Java2019-07-18 14:03:21

    给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。 如果你最多只允许完成一笔交易(即买入和卖出一支股票),设计一个算法来计算你所能获取的最大利润。 注意你不能在买入股票前卖出股票。 示例 1: 输入: [7,1,5,3,6,4] 输出: 5 解释: 在第 2 天(股票价格 = 1)的时候买

  • LeetCode - 122. Best Time to Buy and Sell Stock II2019-07-17 19:43:13

    题目 LeetCode - 122. Best Time to Buy and Sell Stock II 题目链接 https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/ 参考博客 https://www.cnblogs.com/grandyang/p/4280803.html 解题思路 一开始把思路想复杂了,参考博客即可。 解题源码 class Solut

  • 188. Best Time to Buy and Sell Stock IV2019-06-29 12:28:16

    class Solution { public int maxProfit(int k, int[] prices) { if(k>=prices.length/2) { int maxProfit=0; for(int i=1;i<prices.length;i++) maxProfit+=prices[i]>prices[i-1]?prices[i]-prices[

  • Best Time to Buy and Sell Stock II2019-06-27 09:49:41

    Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). Howev

  • best-time-to-buy-and-sell-stock-iii2019-06-14 21:01:26

    题目描述   Say you have an array for which the i th element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete at most two transactions.(最多两次买卖) Note: You may not engage in multiple transactio

  • 极简比特币高频策略机器人2019-06-06 12:51:56

    就是我刚开始编写比特币高频机器人的源代码,几乎没有改动,参数也是原来的参数。这个版本的程序有许多要改进的地方,但即使如此,它也当时表现除了惊人的盈利能力,在我本金不多时,不加杠杆平均每天盈利在5%左右。当然无论从哪一方面,它都不适应今天的市场。我同时也发了一篇文章在社区,大家可

  • LeetCode 121. Best Time to Buy and Sell Stock2019-05-29 09:03:35

    121. Best Time to Buy and Sell Stock(买卖股票的最佳时机)   题目:     给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。   如果你最多只允许完成一笔交易(即买入和卖出一支股票),设计一个算法来计算你所能获取的最大利润。   注意你不能在买入股票前卖出股票。

  • 计算获取最小值和最大值2019-05-28 15:04:43

    比如,在下面的销售业绩中,统计业务员的销售业绩中最大值和最小值。 下面是业务数据:   CREATE TABLE [dbo].[SalesPerformance]( [ID] [int] IDENTITY(1,1) NOT NULL, [Salesman] NVARCHAR(30) NOT NULL, [OrderDate] [DATE] NULL, [Sell] DECIMAL(18,2) NULL )GO

  • (贪心) leetcode 121. Best Time to Buy and Sell Stock2019-05-06 20:52:20

    Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction (i.e., buy one and sell one share of the stock), design an algorithm to find the maximum profit. Note th

  • luogu CF865D Buy Low Sell High2019-04-16 10:55:08

    背景: 代码贼短......... 题目传送门: https://www.luogu.org/problemnew/show/CF865D 思路: 考虑dpdpdp,设fi,jf_{i,j}fi,j​表示第iii天拥有jjj股时的利润。 则: [1][1][1]考虑买入:fi,j=max⁡k=1j−1fk,j−1−aif_{i,j}=\max_{k=1}^{j-1}f_{k,j-1}-a_ifi,j​=maxk=1j−1​fk,

  • 122. Best Time to Buy and Sell Stock II(买卖股票的最佳时机 II)2019-04-06 15:48:38

    题目链接:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/ 思路: 最初我的理解出了问题,我忘了题目背景是美国股票,可以当天卖再当天买, 我以为是N+1的股市制度,尴尬。。。 比较简单的思路就是只要后一个大于前一个就进行买卖。计算总和即可。 这种思路对于连续

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有