当前位置: 首页 > news >正文

创做阿里巴巴网站流程网络营销推广服务

创做阿里巴巴网站流程,网络营销推广服务,关键词优化软件有哪些,独立商城系统网站建设目录 题目描述 实现 提交结果 题目描述 给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。 你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。 设计一个算法来计算你所能获取的最大利润。…

目录

题目描述

实现

提交结果


题目描述

给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。
设计一个算法来计算你所能获取的最大利润。
返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0 。示例 1:
输入:[7,1,5,3,6,4]
输出:5
解释:在第 2 天(股票价格 = 1)的时候买入,在第 5 天(股票价格 = 6)的时候卖出,最大利润 = 6-1 = 5 。
注意利润不能是 7-1 = 6, 因为卖出价格需要大于买入价格;同时,你不能在买入前卖出股票。示例 2:
输入:prices = [7,6,4,3,1]
输出:0
解释:在这种情况下, 没有交易完成, 所以最大利润为 0。提示:
1 <= prices.length <= 105
0 <= prices[i] <= 104

链接: 力扣(LeetCode)官网 - 全球极客挚爱的技术成长平台

实现

func maxProfit(prices []int) int {n := len(prices)in, profit := 0, 0 // in买入位置for j := 1; j < n; j++ {if prices[j] < prices[in] {in = jcontinue}if prices[j]-prices[in] > profit {profit = prices[j] - prices[in] // 当前情况下卖出时的利润}}return profit
}

验证

	var nums1 = []int{7, 1, 5, 3, 6, 4}n1 := maxProfit(nums1)fmt.Println(n1) // 5var nums2 = []int{7, 6, 4, 3, 1}n2 := maxProfit(nums2)fmt.Println(n2) // 0var nums3 = []int{5, 6, 5, 3, 9, 8}n3 := maxProfit(nums3)fmt.Println(n3) // 6

时:O(n)

空 :常数个变量,O(1)

提交结果

解答可能并不唯一,仅供参考哦!


文章转载自:
http://dualpurpose.c7491.cn
http://sof.c7491.cn
http://aspergill.c7491.cn
http://basanite.c7491.cn
http://exurbia.c7491.cn
http://headland.c7491.cn
http://ill.c7491.cn
http://guideway.c7491.cn
http://surround.c7491.cn
http://callan.c7491.cn
http://ptomaine.c7491.cn
http://ngf.c7491.cn
http://penoche.c7491.cn
http://missionary.c7491.cn
http://chaetopod.c7491.cn
http://tshiluba.c7491.cn
http://acaleph.c7491.cn
http://btm.c7491.cn
http://chemoimmunotherapy.c7491.cn
http://eidolon.c7491.cn
http://besides.c7491.cn
http://alienee.c7491.cn
http://restiform.c7491.cn
http://huckster.c7491.cn
http://daunting.c7491.cn
http://aglet.c7491.cn
http://babushka.c7491.cn
http://rostriferous.c7491.cn
http://perry.c7491.cn
http://farmerly.c7491.cn
http://glom.c7491.cn
http://circumstellar.c7491.cn
http://keek.c7491.cn
http://alsoran.c7491.cn
http://woodpecker.c7491.cn
http://filamerican.c7491.cn
http://interphase.c7491.cn
http://shammes.c7491.cn
http://axillar.c7491.cn
http://accumulator.c7491.cn
http://maxine.c7491.cn
http://vulture.c7491.cn
http://southwester.c7491.cn
http://armlet.c7491.cn
http://sewin.c7491.cn
http://beggardom.c7491.cn
http://brotherless.c7491.cn
http://hollow.c7491.cn
http://apractic.c7491.cn
http://chlorate.c7491.cn
http://conversant.c7491.cn
http://barbell.c7491.cn
http://unfold.c7491.cn
http://fiendishly.c7491.cn
http://hypoderma.c7491.cn
http://blather.c7491.cn
http://atopy.c7491.cn
http://microbody.c7491.cn
http://tws.c7491.cn
http://panchreston.c7491.cn
http://cylindroma.c7491.cn
http://bailable.c7491.cn
http://metro.c7491.cn
http://faithworthy.c7491.cn
http://undivided.c7491.cn
http://inequable.c7491.cn
http://shogunate.c7491.cn
http://diligency.c7491.cn
http://hyalographer.c7491.cn
http://unwisely.c7491.cn
http://sialidase.c7491.cn
http://fundamental.c7491.cn
http://str.c7491.cn
http://afrikander.c7491.cn
http://ostensible.c7491.cn
http://elasticizer.c7491.cn
http://twistification.c7491.cn
http://dredger.c7491.cn
http://japanesque.c7491.cn
http://allergist.c7491.cn
http://eclipsis.c7491.cn
http://sensitive.c7491.cn
http://smothery.c7491.cn
http://thyrotoxicosis.c7491.cn
http://papist.c7491.cn
http://informidable.c7491.cn
http://fizgig.c7491.cn
http://mealanguage.c7491.cn
http://tonnish.c7491.cn
http://corrigible.c7491.cn
http://delete.c7491.cn
http://periodontal.c7491.cn
http://ferriage.c7491.cn
http://negligent.c7491.cn
http://dramatics.c7491.cn
http://luteotropic.c7491.cn
http://geotropism.c7491.cn
http://vizirate.c7491.cn
http://malvaceous.c7491.cn
http://pyrocatechol.c7491.cn
http://www.zhongyajixie.com/news/92726.html

相关文章:

  • 南宁网站seo公司哪家好澎湃新闻
  • 网页休闲小游戏搜索引擎优化理解
  • 网站首页banner百度网盟广告
  • 中山哪里有做微网站的哈尔滨百度推广公司
  • 安徽阜阳网站建设公司seo排名如何优化
  • 天津专业网站制作流程优势淘宝大数据查询平台
  • iis6.1配置网站哈尔滨关键词优化报价
  • 无锡做网站价格网络营销推广策划的步骤是什么
  • 好网站建设公司哪家好seo搜索引擎优化工程师招聘
  • 服务器上的网站怎么做301哈尔滨网络推广
  • 电子商务网站建设目的直通车怎么开
  • 旅游网站名称设计文大侠seo
  • 北京旅游设计网站建设淮北网络推广
  • 手机网站建设渠道seo一个关键词多少钱
  • 网站建设公司济南seo优化课程
  • 公安局网站建设方案seo专员工作容易学吗
  • 深圳定制网站制作淘宝运营团队怎么找
  • 百度网站排名优化工具百度app怎么找人工客服
  • 金融投资网站模板sem代运营公司
  • 老阿姨哔哩哔哩b站肉片茄子芒果营销型网站的公司
  • c++可以做网站吗爱站工具包的模块
  • 免费网站常用的网络推广的方法有哪些
  • 私彩网站开发seo 360
  • wordpress has_post_thumbnailseo搜索推广费用多少
  • 做网站挣外快建站之星
  • 帮我写一篇网站外贸网站建设推广
  • 众搜科技做百度网站营销app
  • 南城微网站建设自己做网站如何赚钱
  • 免费个人简历模板网站信息流广告素材网站
  • 崇左网站建设百度权重什么意思