摘要:據(jù)了解,現(xiàn)在前端面試也喜歡考算法題了。下面說(shuō)一個(gè)跟前端有點(diǎn)相關(guān)并且有點(diǎn)趣的一道算法題。遍歷二維數(shù)組連續(xù)的個(gè)數(shù)連續(xù)的個(gè)數(shù)形狀的總數(shù)第幾個(gè)形狀形狀的面積最后的代碼圖片路徑讀取整張圖片的像素。
據(jù)了解,現(xiàn)在前端面試也喜歡考算法題了。前幾天去面試,果不其然的,面試官給我四道算法題,讓我自己回去做。下面說(shuō)一個(gè)跟前端有點(diǎn)相關(guān)并且有點(diǎn)趣的一道算法題。
題目:平面上有若干個(gè)不特定的形狀,如下圖所示。請(qǐng)寫程序求出物體的個(gè)數(shù),以及每個(gè)不同物體的面積。
分析想要知道有多少個(gè)圖形,想到的就是先獲取圖片中的每一個(gè)像素點(diǎn)然后判獲取像素點(diǎn)的背景顏色(RGBA)。想要獲得圖片中的每一個(gè)像素點(diǎn),那就可以聯(lián)想到使用h5的canvas。
如下:
菜鳥教程中canvas的getimagedata方法
書寫html標(biāo)簽。
js獲取canvas對(duì)象
let ctxt = canvas.getContext("2d");
js創(chuàng)建image對(duì)象
let img = new Image; img.src = "./image.png"; //圖片路徑 img.onload = function(){} //加載成功后的執(zhí)行函數(shù),之后的代碼就寫在其中
創(chuàng)建存儲(chǔ)圖片像素點(diǎn)的二維數(shù)組
let coordinates = []; for(let i=0; i<200; i++){ coordinates[i] = []; }
獲取像素點(diǎn),也就是使用getimagedata方法。
ctxt.drawImage(img, 0, 0); //將圖片畫如canvas let data = ctxt.getImageData(0, 0, 350, 200).data;//讀取整張圖片的像素。
將像素存入二維數(shù)組
let x=0,y=0; //二維數(shù)組的行和列, x:列 y:行 for(let i =0,len = data.length; i= 350){ x = 0; y++; } }
目前代碼如下:
(function(){ let ctxt = canvas.getContext("2d"); let img = new Image; let coordinates = []; let h = 200, w = 350; for(let i=0; i<200; i++){ coordinates[i] = []; } img.src = "./image.png"; //圖片路徑 img.onload = function(){ ctxt.drawImage(img, 0, 0); let data = ctxt.getImageData(0, 0, 350, 200).data;//讀取整張圖片的像素。 let x=0,y=0; for(let i =0,len = data.length; i= 350){ x = 0; y++; } } console.log(coordinates); } })();
如圖:
構(gòu)成類似如下二維數(shù)組:
0,0,0,0,0,0,0,0,0,0,0,0 0,0,1,1,1,0,0,0,0,0,0,0 0,1,1,1,1,0,0,0,0,0,0,0 0,1,1,1,0,0,0,1,1,1,1,0 0,0,0,0,0,0,1,1,1,0,0,0 0,0,0,0,0,0,1,1,1,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0
那么我們就只需要知道二維數(shù)組中這種連續(xù)為1的塊有多少個(gè)就知道了圖片中形狀有多少個(gè),并且塊中有多少個(gè)1,那么這個(gè)塊的面積就是1的個(gè)數(shù)。
遞歸回溯算法//計(jì)算連續(xù)的面積和個(gè)數(shù) const linkSum = (i,j,num)=>{ //走過(guò)的路就置0 coordinates[i][j] = 0; num++; //向上 if((i+1 < h) && coordinates[i+1][j] == 1){ num = linkSum(i+1 , j , num); } //向下 if((j+1 < w) && coordinates[i][j+1] == 1){ num = linkSum(i , j+1 , num); } //向左 if((i-1 >= 0) && coordinates[i-1][j] == 1){ num = linkSum(i-1 , j , num); } //向右 if((j-1 >= 0) && coordinates[i][j-1] == 1){ num = linkSum(i , j-1 , num); } return num; }
不熟悉的,直接百度就好,這里就不多說(shuō)了,其實(shí)代碼就反應(yīng)了很多信息。
使用算法,統(tǒng)計(jì)并計(jì)算出結(jié)果。const getCountAndArea = () =>{ let sum = []; let count = 0; for(let i = 0; i < h; i++) //遍歷二維數(shù)組 { for(let j = 0; j < w; j++) { //連續(xù)1的個(gè)數(shù) if(coordinates[i][j] == 1) { let buf = 0; //連續(xù)1的個(gè)數(shù) buf = linkSum(i,j,buf); count++; //形狀的總數(shù) sum.push({ index: count, //第幾個(gè)形狀 area: buf //形狀的面積 }); } } } return { count, sum }; }最后的代碼
(function(){ let ctxt = canvas.getContext("2d"); let img = new Image; let coordinates = []; let h = 200, w = 350; for(let i=0; i<200; i++){ coordinates[i] = []; } img.src = "./image.png"; //圖片路徑 img.onload = function(){ ctxt.drawImage(img, 0, 0); let data = ctxt.getImageData(0, 0, 350, 200).data;//讀取整張圖片的像素。 let x=0,y=0; for(let i =0,len = data.length; i運(yùn)行的結(jié)果:= 350){ x = 0; y++; } } // console.log(coordinates); let rst = getCountAndArea(); // console.log(rst); console.log("個(gè)數(shù): " + rst.count); for(let i=0; i { let sum = []; let count = 0; for(let i = 0; i < h; i++) { for(let j = 0; j < w; j++) { //連續(xù)1的個(gè)數(shù) if(coordinates[i][j] == 1) { let buf = 0; buf = linkSum(i,j,buf); count++; sum.push({ index: count, area: buf }); } } } return { count, sum }; } //計(jì)算連續(xù)的面積和個(gè)數(shù) const linkSum = (i,j,num)=>{ //走過(guò)的路就置0 coordinates[i][j] = 0; num++; //向上 if((i+1 < h) && coordinates[i+1][j] == 1){ num = linkSum(i+1 , j , num); } //向下 if((j+1 < w) && coordinates[i][j+1] == 1){ num = linkSum(i , j+1 , num); } //向左 if((i-1 >= 0) && coordinates[i-1][j] == 1){ num = linkSum(i-1 , j , num); } //向右 if((j-1 >= 0) && coordinates[i][j-1] == 1){ num = linkSum(i , j-1 , num); } return num; } })();
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/87030.html
摘要:詳解十大常用設(shè)計(jì)模式力薦深度好文深入理解大設(shè)計(jì)模式收集各種疑難雜癥的問(wèn)題集錦關(guān)于,工作和學(xué)習(xí)過(guò)程中遇到過(guò)許多問(wèn)題,也解答過(guò)許多別人的問(wèn)題。介紹了的內(nèi)存管理。 延遲加載 (Lazyload) 三種實(shí)現(xiàn)方式 延遲加載也稱為惰性加載,即在長(zhǎng)網(wǎng)頁(yè)中延遲加載圖像。用戶滾動(dòng)到它們之前,視口外的圖像不會(huì)加載。本文詳細(xì)介紹了三種延遲加載的實(shí)現(xiàn)方式。 詳解 Javascript十大常用設(shè)計(jì)模式 力薦~ ...
摘要:回溯法是一種選優(yōu)搜索法,按選優(yōu)條件向前搜索,以達(dá)到目標(biāo)。但當(dāng)探索到某一步時(shí),發(fā)現(xiàn)原先選擇并不優(yōu)或達(dá)不到目標(biāo),就退回一步重新選擇,這種走不通就退回再走的技術(shù)為回溯法。代碼請(qǐng)點(diǎn)這里這里有一個(gè)示例,展示下用回溯法怎么找到這些形狀的。 說(shuō)明 canvas元素標(biāo)簽強(qiáng)大之處在于可以直接在HTML上進(jìn)行圖形操作,具有極大的應(yīng)用價(jià)值。 canvas 可以實(shí)現(xiàn)對(duì)圖像的像素操作,這就要說(shuō)到 getImag...
摘要:最近遇到的前端面試題更新版前端掘金個(gè)人博客已上線,歡迎前去訪問(wèn)評(píng)論無(wú)媛無(wú)故的個(gè)人博客以下內(nèi)容非本人原創(chuàng),是整理后覺(jué)得更容易理解的版本,歡迎補(bǔ)充。 一道面試題引發(fā)的對(duì) javascript 類型轉(zhuǎn)換的思考 - 前端 - 掘金 最近群里有人發(fā)了下面這題:實(shí)現(xiàn)一個(gè)函數(shù),運(yùn)算結(jié)果可以滿足如下預(yù)期結(jié)果: ... 收集 JavaScript 各種疑難雜癥的問(wèn)題集錦 - 前端 - 掘金 從原博客遷移...
摘要:最近遇到的前端面試題更新版前端掘金個(gè)人博客已上線,歡迎前去訪問(wèn)評(píng)論無(wú)媛無(wú)故的個(gè)人博客以下內(nèi)容非本人原創(chuàng),是整理后覺(jué)得更容易理解的版本,歡迎補(bǔ)充。 一道面試題引發(fā)的對(duì) javascript 類型轉(zhuǎn)換的思考 - 前端 - 掘金 最近群里有人發(fā)了下面這題:實(shí)現(xiàn)一個(gè)函數(shù),運(yùn)算結(jié)果可以滿足如下預(yù)期結(jié)果: ... 收集 JavaScript 各種疑難雜癥的問(wèn)題集錦 - 前端 - 掘金 從原博客遷移...
閱讀 3069·2021-10-12 10:12
閱讀 1575·2021-09-09 11:39
閱讀 1906·2019-08-30 15:44
閱讀 2346·2019-08-29 15:23
閱讀 2902·2019-08-29 15:18
閱讀 2969·2019-08-29 13:02
閱讀 2693·2019-08-26 18:36
閱讀 741·2019-08-26 12:08