一. 題目描述Given a singly linked list where elements are sorted in ascending order,
題意:在牆上貼海報,海報可以互相覆蓋,問最後可以看見幾張海報。該題是線段樹區間修改+離散化的應用。不難想到, 每次對一個最長10^7的線段進行線段樹的區間修改,
一. 題目描述Given an array where elements are sorted in ascending order, convert it t
Sort a linked list using insertion sort.//鏈表插入排序//對於當前遍歷的cur點,判斷前面是否可以插入,若可以插入,則
LeetCode解題之Search Insert Position原題在一個有序數組中,如果目標數字存在,則返回它的下標,否則返回它應該插入位置的下標值。注意點
LeetCode解題之Search for a Range原題在一個有序的數組中找到找到目標數字的起始坐標和結束坐標,如果不存在則返回[-1, -1]。注意點:
Given a binary tree, return all root-to-leaf paths.For example, given the follow
一. 題目描述Determine whether an integer is a palindrome. Do this without extra space
題意:區間加減,區間求和。該題是線段樹區間增減和區間求和的模板題。 和區間修改值一樣, 在每個結點上維護一個之前加減的值, 那麼每次經過一個結點時, 當前結點一
一. 題目描述Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -
這個項目主要包含三部分:人臉檢測、特征提取、性別分類: 這篇博客中我們重點介紹OpenCv的人臉檢測函數。這篇博客我們先不提MFC,而是在win32控制台下編
一. 題目描述Implement pow(x, n).二. 題目分析實現pow(x, n),即求x的n次冪。最容易想到的方法就是用遞歸直接求n個x的乘積,這裡需
Given n, how many structurally unique BST's (binary search trees) that store
LeetCode解題之Search in Rotated Sorted Array原題把一個嚴格升序的數組進行旋轉,如[0,1,2,3,4,5]旋轉3位成為[3
Given a binary tree containing digits from 0-9 only, each root-to-leaf path coul