E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
238.
【LeetCode】
238.
Product of Array Except Self
Problem:Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return
hf寒沨
·
2020-06-23 13:05
算法
Java
LeetCode
数据结构
#LeetCode#Problem
238.
Product of Array Except Self-除自身以外数组的乘积(java版)
读题题目难度:medium题目要求:输出数组的第i位=除自身以外其他各元素的乘积;不可以使用除法复杂度为O(n)。复杂度为O(n)。思路双层循环最简单、最容易想到的思路就是用双层循环,每次判断后在原基础上只乘上非自身的数即可,但是复杂度是O(n^2),超出了题目的要求。代码如下:classSolution{publicint[]productExceptSelf(int[]nums){int[]n
Sunshine94warm
·
2020-06-22 06:52
LeetCode刷题之路
LeetCode
238.
除自身以外数组的乘积(Java版)
题目
238.
除自身以外数组的乘积题解构造两个数组left和rightleft[i]=nums[0]*nums[1]*……*nums[i-2]*nums[i-1]right[i]=nums[i+1]*nums
RAYFUXK
·
2020-06-22 04:27
Leetcode
Leetcode
238.
除自身以外数组的乘积(左右扫描)
题解题意:给你一个长度为n的整数数组nums,其中n>1,返回输出数组res,其中res[i]等于nums中除nums[i]之外其余各元素的乘积。输入:[1,2,3,4]输出:[24,12,8,6]题解:想要题目的意思,我们可以考虑对每个数字求它左边和右边的数据的乘积。因此最直观的做法就是利用一个L数组保留第i个数字之前的所有数字的乘积,利用R数组保留第i个数字之后所有数字的乘积,然后再遍历一次,
Einskai216
·
2020-06-21 19:05
Leetcode题目
[Leetcode]
238.
除自身以外数组的乘积 java
给定长度为n的整数数组nums,其中n>1,返回输出数组output,其中output[i]等于nums中除nums[i]之外其余各元素的乘积。示例:输入:[1,2,3,4]输出:[24,12,8,6]说明:请不要使用除法,且在O(n)时间复杂度内完成此题。进阶:你可以在常数空间复杂度内完成这个题目吗?(出于对空间复杂度分析的目的,输出数组不被视为额外空间。)思路:每一个数除了它本身所有数的乘积都
niceHou666
·
2020-06-21 03:12
Leetcode
238.
除自身外数组的乘积(java)
238.
除自身外数组的乘积题目描述给定长度为n的整数数组nums,其中n>1,返回输出数组output,其中output[i]等于nums中除nums[i]之外其余各元素的乘积。
王俊超_
·
2020-06-21 03:58
leecode
leetcode
数据结构
算法
动态规划
java
力扣刷题
238.
除自身以外数组的乘积(java)
给定长度为n的整数数组nums,其中n>1,返回输出数组output,其中output[i]等于nums中除nums[i]之外其余各元素的乘积。示例:输入:[1,2,3,4]输出:[24,12,8,6]说明:请不要使用除法,且在O(n)时间复杂度内完成此题。进阶:你可以在常数空间复杂度内完成这个题目吗?(出于对空间复杂度分析的目的,输出数组不被视为额外空间。)思路左边乘积*右边乘积classSol
happytaohaha
·
2020-06-20 22:38
力扣腾讯精选50道
构建乘积数组(Leetcode
238.
Product of Array Except Self)
剑指offer66.构建乘积数组题目:给定一个数组A[0,1,...,n-1],请构建一个数组B[0,1,...,n-1],其中B中的元素B[i]=A[0]*A[1]*...*A[i-1]*A[i+1]...A[n-1]。不能使用除法。同leetcode238https://leetcode.com/problems/product-of-array-except-self/分析:假如可以利用除法
L50198040254939913
·
2020-06-20 22:44
7.数组(七)
https://leetcode-cn.com/tag/array/题目汇总219.存在重复元素II简单228.汇总区间中等229.求众数II中等
238.
除自身以外数组的乘积中等268.缺失数字简单219
今天柚稚了么
·
2020-06-08 16:21
LeetCode
238.
除自身以外数组的乘积 | Python
238.
除自身以外数组的乘积题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/product-of-array-except-self题目给你一个长度为
大梦三千秋
·
2020-06-06 07:51
python
算法
leetcode
238.
【写作杂谈】你的认真,是对别人的尊重,更是对自己的负责
2019年2月26日,星期二,阴最近,我参加了由“谈写作”专题主办的一个写作特训班。到现在为止,已经有一周多时间了。一、参加特训班,我是认真的这是我参加的第一个写作培训班。以前,我对写作培训班不是很感兴趣,总认为写作是自己的事,没有什么捷径,要想提高写作水平,提升写作质量,就需要不断地去写,不断地去练。至于培训班,我总是抱着怀疑的态度,总认为如果培训班能教会大家写作,那么早已经遍地是作家了。而且看
亦然花开
·
2020-04-06 23:57
刷题
238.
Product of Array Except Self
一、题目说明题目238.ProductofArrayExceptSelf,给n个整数,返回一个数组,每个元素都是原数组除了该位置元素外的乘积。不能用除法,复杂度要求是O(n)。难度是Medium!二、我的解答看到这个问题,我第一想法就是求所有元素的乘积,然后就简单了。但是不允许使用除法...然后能想到的思路就是可以用动态规划:dp[i]=nums[0]*...*nums[i-1]=dp[i-1]*
siwei718
·
2020-04-06 08:00
238.
Product of Array Except Self(重)
很有趣的思路,这道题难在思维的转换,需要好生思考,每一位的输出结果被该位分成前后两段,本质上讲从前和从后遍历没有区别,故而可以在统一循环里完成,所以一次循环后就可输出结果。参考人家的解法classSolution{public:vectorproductExceptSelf(vector&nums){intn=nums.size();vectoroutput(n,1);intfromHead=1,
殷水臣
·
2020-04-03 16:08
238.
Product of Array Except Self
Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12,8
我是你的果果呀
·
2020-04-02 15:53
238.
Product of Array Except Self
题目描述Givenanarraynumsofnintegerswheren>1,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].Example:Input:[1,2,3,4]Output:[24,12,8,6]Note:Pleasesolveitwithoutdiv
凌霄文强
·
2020-04-02 11:31
238.
Product of Array Except Self
238.ProductofArrayExceptSelf题目:https://leetcode.com/problems/product-of-array-except-self/难度:Medium不使用division并且O(n)想到的算法O(n^2)会超时classSolution(object):defproductExceptSelf(self,nums):""":typenums:Lis
oo上海
·
2020-03-31 12:00
238.
Product of Array Except Self
LeetCodeLink下面的Solution可以optimizetoO(1)space:leftToRightasresrightToLeftstorewithatempvariablepublicint[]productExceptSelf(int[]nums){intlen=nums.length;int[]leftToRight=newint[len+1];int[]rightToLeft
Super_Alan
·
2020-03-23 14:46
238.
Product of Array Except Self
题目Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12
yxwithu
·
2020-03-16 06:23
肆、为政__七、爱民
群书治要360七、爱民
238.
利天下者,天下亦利;害天下者,天下亦害之。……仁人在位,常为天下所归者,无他也,善为天下兴利而已矣。
淡定之絕塵西歸
·
2020-03-14 18:20
238.
Product of Array Except Self
publicclassSolution{publicint[]productExceptSelf(int[]nums){/*https://leetcode.com/discuss/46104/simple-java-solution-in-o-n-without-extra-spaceGivennumbers[2,3,4,5],regardingthethirdnumber4,theproduc
billyzhang
·
2020-03-07 05:22
238.
拧巴:水里的鱼爱上天上的鸟
【洋豆豆荐书】第238天~拧巴:水里的鱼爱上天上的鸟
238.
《侘寂:致艺术家、设计师、诗人和哲学家》[美]雷蒙德·科伦6月新书抢先解读:古老的侘寂美学为什么能适应现代社会?
洋入海流
·
2020-03-05 05:35
[LeetCode]
238.
Product of Array Except Self
Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12,8
Eazow
·
2020-02-15 19:09
238.
Product of Array Except Self
Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12,8
sherwin29
·
2020-02-10 07:31
[LeetCode]
238.
Product of Array Except Self
除本身之外的数组之积。题意是给一个数组,请输出一个(应该是等长的)数组,res[i]位上存的是input数组除了i位其他所有数字的乘积。例子,Example:Input:[1,2,3,4]Output:[24,12,8,6]注意这个题不能用除法,如果用除法会很简单。思路是对于在i位上的数字,在res[i]上存住从左往右把之前每个数字相乘的乘积*从右向左在i之后每个数字相乘的乘积。注意左边和右边的代
朝鲜冷面杀手
·
2020-01-21 14:00
238.
除自身以外数组的乘积
给定长度为n的整数数组nums,其中n>1,返回输出数组output,其中output[i]等于nums中除nums[i]之外其余各元素的乘积。示例:输入:[1,2,3,4]输出:[24,12,8,6]说明:请不要使用除法,且在O(n)时间复杂度内完成此题。进阶:你可以在常数空间复杂度内完成这个题目吗?(出于对空间复杂度分析的目的,输出数组不被视为额外空间。)来源:力扣(LeetCode)链接:h
zjcfrancis
·
2020-01-14 17:00
014期3D推荐
(上期独胆7中.跨度3中.6码中组)胆码
238.
双胆23.独胆2.定位:百位1349.十位0237.个位2568.4码:2368.5码:02368.6码:023678.和值:9.10.13.17.20.
萱萱_eed9
·
2019-12-31 01:49
238.
Product of Array Except Self
Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12,8
exialym
·
2019-12-29 16:58
238.
Product of Array Except Self
Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12,8
Jeanz
·
2019-12-23 03:45
Leetcode解题笔记-
238.
Product of Array Except Self
题目描述原题链接:ProductofArrayExceptSelfGivenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexam
JimmieZhou
·
2019-12-16 06:22
LeetCode笔记:
238.
Product of Array Except Self
问题:Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,1
Cloudox_
·
2019-12-06 15:05
238.
Product of Array Except Self
Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12,8
AlanGuo
·
2019-11-30 02:56
#
238.
Product of Array Except Self
https://leetcode.com/problems/product-of-array-except-self/#/descriptionimage.png分析将某个元素左边所有元素相乘*右边所有元素相乘返回即可Python超时版16/17有个超长的列表又尼玛超时了。。。TimeO(n^2)SpaceO(n)classSolution(object):defproductExceptSelf
Double_E
·
2019-11-04 13:54
leetcode
238.
除自身以外数组的乘积【简化计算,扩宽思维,动态规划也不是一步到位】
方法一:使用除法执行用时:56ms,在所有C++提交中击败了95.06%的用户内存消耗:12.4MB,在所有C++提交中击败了75.36%的用户classSolution{public:vectorproductExceptSelf(vector&nums){vectorans(nums.size());intt=1;intnum_of_0=0;for(inti=0;i1||(num_of_0>0
奈何辰星无可奈
·
2019-06-16 18:48
中等难度
leetcode
238.
悟
网图,若侵删“悟”——左心右吾,我用心去思考,即为悟。肖特说:“上好一节课,首要的是悟,悟语言,悟课堂。”他说语文教师要养成自觉的语言感知力,不能做教参的搬运工。听他的讲座,回想自己的教学,感到很惭愧,因为我就是教参忠实的搬运工,从未或者很少自己去感悟文本语言。他说我们的语文教学要立足语言文字,要姓“语”,可是想想自己教学设计,很多时候我只关注教学的形式,特别是在公开课上,为了课堂上热热闹闹,我花
时光海岸526
·
2019-03-31 13:19
红楼梦诗词赏析——
238.
静言思之
目录五16.静言思之——“言”是语助词,无义。《诗·卫风·氓》:“静言思之,躬自悼矣。”图片发自App17.鲔——鲟鱼和鳇鱼的古称,春日用以荐祭寝庙(先王之墓),是贵重的鱼。梁,屋梁。《诗经》中曾以“有鹙(贪恶的鸟)在梁,有鹤在林”比亲近恶人而疏远善者。全句说:鲔、鹤本应有安居之处。图片发自App18.鳞甲——指蛟龙。羽毛——指凡鸟。喻所谓君子失意,小人得势。19.谁知余之永伤——宋儒朱熹《感春赋
焰归来
·
2018-09-04 10:07
238.
圣经
对于圣经,一直听过,但没有深入的了解过。第一次知道圣经,是上小学五年纪的时候,父亲买给我一套圣经故事,以插画为主的那种。觉得很有意思,用不了几天就全看完了。但是现在回忆起来,大概只有歌利亚和大卫王的故事,以及剃头后就没有了力气的大力士的故事有点印象。其实这本书的影响是很大的,但它对我的影响却少的多,这可能更多是文化的不同吧。第二次接触大概是五年前,想读圣经,就在网上买了一本英文版的。但是看不了多久
科幻经典
·
2017-12-07 02:08
唯一超越比特币的币
2115元卖出10枚共计21150元:以上只是锁仓到期币价30天的利润共计人民币6150元另外利息的利润在给大家精算一下10月1日210元2日212.8元3日212.8元4日221.2.元5日231元6日
238
星辰大海APP
·
2017-11-16 20:49
LeetCode笔记:
238.
Product of Array Except Self
问题:Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,1
Cloudox_
·
2017-01-06 09:13
LeetCode
LeetCode笔记
238.
Product of Array Except Self (计算整型数组中除了某元素之外所有元素的积)
Givenanarrayof n integerswhere n >1, nums,returnanarray output suchthat output[i] isequaltotheproductofalltheelementsofnums except nums[i].Solveit withoutdivision andinO(n).Forexample,given [1,2,3,4],
xiangwanpeng
·
2016-11-11 23:00
LeetCode
算法
数组
238.
与喵共舞127~国庆逛首都博物馆
2016.10.03国庆假期第3天了,雾霾还是照常,还好提前预约了首都博物馆的票,继续室内活动。进了首博,正对的就是景德街的大牌坊。今天有三个主要展览《走进养心殿》、《大元三都》和《燕京八绝》。从滚梯上看大厅,真是很气派。养心殿展览是需要预约的。梳头的时候,给我展示了介绍材料。千叟宴上用的大火锅,中间5个小锅,四周又4个调料碟。鎏金的石榴树。鎏金铜佛。喵看见了鎏金的座钟。遇到了讲解员,高高着听。介
摹喵居士
·
2016-10-03 13:17
LeetCode
238.
Product of Array Except Self 解题报告
LeetCode238.ProductofArrayExceptSelf解题报告题目描述Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].示例Forexample,given[1,2,3,4],
camellhf
·
2016-09-23 15:00
LeetCode
238.
Product of Array Except Self
238.ProductofArrayExceptSelfGivenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,g
NNNNNNNNNNNNY
·
2016-06-07 11:00
Middle-题目3:
238.
Product of Array Except Self
题目原文:Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24
cmershen
·
2016-05-31 15:00
leetcode
238.
Product of Array Except Self
题目Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12
Decorator2015
·
2016-05-23 13:05
Leetcode
LeetCode-
238.
Product of Array Except Self
Problem:Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return
u010305706
·
2016-05-17 20:00
LeetCode
238.
Product of Array Except Self
Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,given[1,2,3,4],return[24,12,8
qq_20581563
·
2016-05-03 15:00
LeetCode
238.
Product of Array Except Self
Givenanarrayof n integerswhere n >1, nums,returnanarray output suchthat output[i] isequaltotheproductofalltheelementsof nums except nums[i].Solveit withoutdivision andinO(n).Forexample,given [1,2,3,4]
qq_27991659
·
2016-04-18 22:00
LeetCode
238.
Product of Array Except Self
#include #include usingnamespacestd; //Givenanarrayofnintegerswheren>1,nums,returnanarrayouputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i]. //solveitwithoutdivisionandinO(n
github_34333284
·
2016-04-06 23:00
238.
Product of Array Except Self
Givenanarrayof n integerswhere n >1, nums,returnanarray output suchthat output[i] isequaltotheproductofalltheelementsof nums except nums[i].Solveit withoutdivision andinO(n).Forexample,given [1,2,3,4]
a342500329a
·
2016-03-30 13:00
leetcode:
238.
Product of Array Except Self(Java)解答
转载请注明出处:z_zhaojun的博客原文地址题目地址ProductofArrayExceptSelfGivenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i]. Solveitwithoutdivi
u012975705
·
2016-03-05 14:00
java
LeetCode
博客
上一页
1
2
3
4
5
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他