登录
首页 » Others » Node.js开发实战详解源代码

Node.js开发实战详解源代码

于 2020-11-27 发布
0 206
下载积分: 1 下载次数: 0

代码说明:

Node.js开发实战详解源代码Node.js开发实战详解源代码Node.js开发实战详解源代码

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • LeetCode cpp最新中文解.pdf
    LeetCode cpp最新中文题解.pdfLeetCode cpp最新中文题解.pdfLeetCode cpp最新中文题解.pdf目录3.4 Add binary615.1.5 Binary Tree Level Or-3.5 Longest Palindromic Substring. 62der traversal il3.6 Regular Expression Matching665.1.6 Binary Tree Zigzag3.7 Wildcard Matching67Level Order traversal. 963.8 Longest Common Prefix5.1.7 Recover Binary Search3. 9 Valid Number70Tree983.10 Integer to roman725. 1. 8 Same Tree3. 11 Roman to Integer735.1.9 Symmetric Tree1003.12 Count and Say745.1.10 Balanced Binary Tree.. 1023. 13 Anagrams755.1.11 Flatten Binary Tree to3. 14 Simplify Path76Linked List1033. 15 Length of Last Word775.1. 12 Populating Next RightPointers in each node ii 105第4章栈和队列7952二叉树的构建10641栈795.2.1 Construct Binary Tree4Valid Parentheses79from Preorder and In4.1.2 Longest valid Parenorder Traversa106theses805.2.2 Construct Binary Tree4.1.3 Largest Rectangle infrom Inorder and posHistogram82torder Traversal1074.1.4 Evaluate reverse pol-53二叉查找树108ish notation845.3. 1 Unique Binary Search4.2队列85Trees.1085.3.2 Unique Binary Search第5章树86Trees li.1105.1二叉树的遍历865.3.3 Validate Binary Search5.1.1 Binary Tree PreorderTreeTraversal865.3. 4 Convert Sorted array to5.1.2 Binary Tree InorderBinary Search Tree...112Traversal885.3.5 Convert Sorted List to5.1. 3 Binary Tree PostorderBinary Search Tree113Traversal9054二叉树的递归.1145. 1. 4 Binary Tree Level Or5.4.1 Minimum Depth of Bider traversal)2nary lree115目录5.4.2 Maximum Depth of Bi8.3.,2重新实现 next permunary Tree116tation1425.4.3 Path Sum11783.3递归.1435.4 4 Path Sum il118 8.4 Permutations II1445.4.5 Binary Tree Maximum8.4.1 next permutation... 144Path Suum11984.2重新实现 next permu5.4.6 Populating Next Righttation144Pointers in each node 120843递归1445.4.7 Sum Root to Leaf num8.5 Combinations146bers2185.1递归1468.5.2迭代147第6章排序1238.6 Letter Combinations of a phone6.1 Merge Sorted Array123umber1476.2 Merge Two Sorted Lists12486.1递归1486.3 Merge k Sorted Lists124862迭代96.4 Insertion Sort List125第9章广度优先搜索1506.5 Sort list1269.1 Word Ladder1506.6 First Missing Positive1279.2 Word Ladder il1546.7 Sort Colors1289.3 Surrounded regions162第7章查找94小结16413194.l适用场景1647.1 Search for a range131942思考的步骤7.2 Search Insert Position.13294.3代码模板1657. 3 Search a 2D Matrix133第10章深度优先搜索173第8章暴力枚举法13510.1 Palindrome Partitioning1738.1 Subsets13510.2 Unique Paths1768.1.1递归1350.2.1深搜1768.1.2迭代.1371022备忘录法.1768.2 Subsets il13810.23动规177821递归13810.24数学公式1788.2.2迭代.14110.3 Unique Paths Il1798. 3 Permutations14210.3.1备忘录法1798.3.1 next permutation14210.3.2动规.180目录10.4 N-Queens1813.4 Maximal rectangle21310.5 N-Queens II18413.5 Best Time to Buy and Sell Stock10.6 Restore ip addresses186.21410.7 Combination Sum18813.6 Interleaving String21510.8 Combination Sum Il18913.7 Scramble String21710.9 Generate Parentheses.19013. 8 Minimum Path Sum.22210.10 Sudoku solver19213.9 Edit Distance22410.11 Word Search.19313. 10 Decode Ways.22610.12小结19513. 11 Distinct sub22710.12.1适用场景19513. 12 Word Break22810.122思考的步骤19513 13 Word Break il2300.12.3代码模板197第14章图23210.12.4深搜与回溯法的区別.19714. 1 Clone Graph23210.12.5深搜与递归的区别..197第15章细节实现题235第11章分治法19915.1 Reverse Integer2351.1 Pow(x, n)19915.2 Palindrome Number.23611. 2 Sqrt(x)20015.3 Insert Interval237第12章贪心法20115.4 Merge Intervals23812.1 Jump game20115.5 Minimum Window Substring23912.2 Jump game II15.6 Multiply Strings24112. 3 Best Time to buy and Sell stock 20415.7 Substring with Concatenation12. 4 Best Time to buy and sell stock l205of all words24412. 5 Longest Substring Without re15.8 Pascal,s Triangle245peating Characters20615.9 Pascals Triangle Il24612.6 Container with Most Water.. 207 15.10 Spiral Matrix24715.11 Spiral matrix II248第13章动态规划20915.12 ZigZag Conversion25013. 1 Triangle20915.13 Divide Two Integers25113.2 Maximum Subarray15. 14 Text Justification25313.3 Palindrome Partitioning II1215.15 Max Points on a line255目录第1章编程技巧在判断两个浮点数a和b是否相等时,不要用a==b,应该判断二者之差的绝对值fabs(a-b)是否小于某个阈值,例如1e-9。判断一个整数是否是为奇数,用x%2!=0,不要用x%2=1,因为ⅹ可能是负用char的值作为数组下标(例如,统计字符串中每个字符岀现的次数),要考虑到char可能是负数。有的人考虑到了,先强制转型为 unsigned int再用作下标,这仍然是错的。正确的做法是,先强制转型为 unsigned char,再用作下标。这涉及C十整型提升的规则,就不详述了。以下是关于STL使用技巧的,很多条款来自《 Effective STL》这本书。vector和 string优先于动态分配的数组首先,在性能上,由于 vector能够保证连续内存,因此一旦分配了后,它的性能跟原始数组相当;其次,如果用new,意味着你要确保后面进行孓 delete,一旦忘记了,就会出现BUG,且这样需要都写一行 delete,代码不够短再次,声明多维数组的话,只能一个一个new,例如int** ary = new int*[row_num];for(int i=0: i< row num; ++1)ary [i] new int [col_num]用 vector的话一行代码搞定vectorary(row_num, vector(col_num, 0))使用 reserve来避免不必要的重新分配第2章线性表这类题目考察线性表的操作,例如,数组,单链表,双向链表等。2数组2.1.1 Remove Duplicates from Sorted array描述Given a sorted array, remove the duplicates in place such that each element appear only onceand return the new lengthDo not allocate extra space for another array, you must do this in place with constant memoryFor example, Given input array A =[1, 1, 2Your function should return length =2, and a is now [1, 2]分析无代码1/ LeetCode, Remove Duplicates from Sorted Array//时间复杂度0(n),空间复杂度0(1)class Solution tublicint removeDuplicates(vector& nums)tif (nums empty o) return 0;int index =ofor (int i =1: i nums size: 1++ iif (nums [index] ! nums [i])nums [++index]= nums [i]return index 12.1数组代码2//LeetCode, Remove Duplicates from Sorted Array/使用STL,时间复杂度0(n),空间复杂度0(1)class Solution ipublicint removeDuplicates(vector& nums)treturn distance(nums begin(), unique(nums begin(), nums end ())代码3/ LeetCode, Remove Duplicates from Sorted Array/使用STL,时间复杂度0(n),空间复杂度0(1)lass Solution fublicint removeDuplicates(vector& nums)treturn distance(nums begin(, removeDuplicates(nums begin(, nums end(), nums begintemplateOutIt removeDuplicates(InIt first, InIt last, OutIt output)thile (first last)i*output++ = *firstfirst upper_bound(first, last, *firstreturn output相关题目Remove Duplicates from Sorted Array I,见§2.1.22.1.2 Remove Duplicates from Sorted Array II描述Follow up for"Remove Duplicates " What if duplicates are allowed at most twice?For example, Given sorted array a =[1, 1, 1, 2, 2, 3]Your function should return length=5, and A is now [1, 1, 2, 2, 3分析加一个变量记录一下元素出现的次数即可。这题因为是已经排序的数组,所以一个变量即可解决。如果是没有排序的数组,则需要引入一个 hashmap来记录出现次数。4第2章线性表代码1// Leet Code, Remove Duplicates from Sorted Array II//时间复杂度0(n),空间复杂度0(1)//qauthorhex108(https://github.com/hex108)class Solution tublicint removeDuplicates(vector& nums)tif (nums size(
    2020-12-04下载
    积分:1
  • 模式识别结业论文
    研究生 模式识别 结业的论文,我自己的,也通过了,大家参考一下。
    2021-05-07下载
    积分:1
  • 基于OpenCV的摄像头动态手势轨迹识别及其应用
    基于OpenCV的摄像头动态手势轨迹识别及其应用,前沿的研究,最新论文2012B_0% random t XoX,XX4_1、42、B0Bhattacharyyaglsl. 8 gsl_ran_gaussianpp q1/3t=∑∵n8HSVcerterHSVIISV V44 HMM3IIMMA=SO4 B450AiI i j-+∑bk2HMM4+1=A_1*X1-X0+A_2*Xo1994-2013ChinaAcademicJournalElectronicPublishingHouse.Allrightsreservedhttp://www.cnki.netOpencvlIMMP., v3)A BP(IAIIMM(a)两点之间的方向夹角(b)轨迹的方间夹角分为8等份HMMBaum-WelchyO aB,i/∑a,iBtHMMAHMM∑s: t Hq,=======-s,qui a 6. o, B, 1 j/PolAa)向右的于势(b)向左的手势(c)向上的手势(d向下的手势动,O:B1j1+1J∑,ijtimermero∑点:1j/∑b kFirmerlimmer=3∑y,1/∑yIMM丌AB512Baum-welch4.3HMⅥHMMHMⅥHMM8(a)第5(b)第6帧第6幀第6帧o1994-2013ChinaAcademicJournalElectronicPublishingHouse.Allrightsreservedhttp://www.cnki.net1322012(a第1(b)第72(a)第5帧(b)第60帧(c}第62帧(d)第G3帧(c)第75d)第呲5.4 HMMHMMHMMHMIHMM丌ABHMMa)第4帧.0()第50d)第54帧HMMHMM0.2928060.56l9010.2943160.5606530.1167910.1900640.0428680.1903360.041360.3217210.3235800.0173120.1166050.0155030.0708480.069680.1601290.0412690.1600400.039740.0749660.0738510.1859570.1468650.1466160.2136800.1587320.0954920.1586260.094620.2069880.207462HMM30.00l20.00100.0010.00I0.00l0.000.0050.00l.O001.000360.0010.00120.00I0.0010.00l0.001IIMMHMMIIMM320×240HMMo1994-2013ChinaAcademicJournalElectronicPublishingHouse.Allrightsreservedhttp://www.cnki.netOpencv133jck hand recogni tion2005,2611):29Openly获取直方图轨迹图像2010,30(71:59-61.在单击“轨迹「未选择-图像显示[5 QIN WEN, PENG QICONG. An improved particle filter algorithm图像时选择Chmm控制based on neural network for visual tracking[c / International Con个按钮选C控制贪食鱼ference on Communications, Circuits and SyLas v.项训练HMMIEEE.2007:765-768LD」停止退出2009[7 YU JINXIA, LIU WENJING, YANG Y. Impmved particle filter algorithms based on partial systematic resampling C|//IEEE InTernational Conference on Intelligent Computing and Intelligent SystemsLas vegas: IEEE, 2010: 483-4878 FAZLI S, POUR II M, BOUZARI ll. Particle filter based objecttracking with sift and color feature[C // Second International Conas Vegas: IEEE, 2009: 89-9(8:62-64.L10」LD」HMM,2004[ II YUAN LICHI. An improved HMM speech recognition model[c//International Conference on AudiO. las Vegas: IEEE, 2008: 1311LlOpenCVLD」1315.[12 TAN WENJUN, WU CHENGDONG, ZHAO SHUYING. Recogni[2 CHlO JU, JIN S ll, PILAM X D. Object tracking circuit using partition of dynamic hand gesture based on SCllMM model[C]//Chi-cle filter with multiple features [C//SICE-ICASE: Internationalnese Control and Decision Conference. Log Vegas: IEEE. 2009Joint Conference. Las Vegas: IEEE, 2006: 1431-14362430-24341272011,28(2):242-244.C,2010,1(1):92-95SIFT[8 BEIS J S, LOWE D G. Shape indexing using approximate nearest-neighbour search in high-dimensional spaces [C]// Proceedings ofthe IEEE 1997 Computer Society Conference on Computer visionand Pattern Recognition. Washington, DC: IEEE Computer Socie-ly,997:1000-1006SIFT009,29(5):423-2262009,30(4):857-861[O][2] LOWE D G. Distinctive image features from scale-invariant key-points[ J]. International of Computer Vision, 2004, 60(2):91[11 SHUM H Y, SZELISKI R. Construction of panoramic image mosaicswith global and local alignment[ J International Journal of Comp3 MIKOLAJCZYK K, SClIMID C. A performance evaluation of localer visian,2000,36(2):101-130descriptors[ J|. IEEE Transactions on Pattern Analysis and Machine[12 ZOGIILAMI 1. FAUGERLAS O, DERICIIE R. Using geometric corIntelligence,2005,27(10):1615-1630ners to build a 2D mosaic from a set of images[C]// Proceedings of4 LINDEBERG T. Seale -space theory a basic foul for analyzingthe International Conference on Computer Vision and Pattern Recog-structures at different seales LJ. Journal of Applied StatisticitiL. Washington, DC: IEEE Computer Society, 1997: 1671994,21(2):224-270o1994-2013ChinaAcademicJournalElectronicPublishingHouse.Allrightsreservedhttp://www.cnki.net
    2020-12-01下载
    积分:1
  • 稀疏冗余表示 在信号和图像处理方面从理论到实际应用(中文)
    Sparse and Redundant Representations中文版迈克尔 Elad 是计算机科学部门——以色列理工学院的一名副教授。他感兴趣的研究领域包括信号处理、图像处理、计算机视觉、数值分析、数值线性代数和机器学习算法。
    2020-11-28下载
    积分:1
  • 人工势场法路径规划
    人工势场法路径规划的仿真程序,用matlab仿真实现
    2020-12-04下载
    积分:1
  • 试卷自动生成系统开报告
       随着计算机技术的发展和普及,在我们的学习和日常生活中都离不开计算机技术,大到科研的超级计算机,小到我们日常使用的手提电话,实际都是计算机技术的应用。对于学校、企事业单位来说,计算机特别是PC机已经相当普及,大家对计算机的操作更加熟悉。为了充分利用现有的计算机系统减轻教师的劳动强度,摒弃传统的手工出题方式,开发了试卷生成系统。
    2020-12-09下载
    积分:1
  • SimPowerSystem
    SimPowerSystem使用手册,模块查询
    2020-12-10下载
    积分:1
  • Daugman虹膜定位源代码
    虹膜定位算法,基于动态轮廓定位内圆边缘,Hough变换算法,定位准确,代码齐全
    2020-11-28下载
    积分:1
  • 计算广告 pdf
    【实例简介】计算广告 良心之所
    2021-11-14 00:34:14下载
    积分:1
  • Frangi滤波器,可对血管图像进行充分的增强
    Frangi滤波器,对血管增强具有较好的效果,可充分实现血管图像的增强。
    2020-12-11下载
    积分:1
  • 696518资源总数
  • 105678会员总数
  • 22今日下载