码迷,mamicode.com
首页 >  
搜索关键字:spell it right    ( 9304个结果
二叉树——leetcode 114. 二叉树展开为链表
void flatten(TreeNode root) { // base case,即最小 if (root == null) return; flatten(root.left); flatten(root.right); /**** 后序遍历 ****/ // 1、保存原来的左右节点,避免变换 ...
分类:其他好文   时间:2021-03-16 11:50:33    阅读次数:0
每日一题力扣557
错解 class Solution: def reverseWords(self, s: str) -> str: a=[] s=s.split() for i in s: if i!='': left=0 right=len(i)-1 while left <right: i[left],i[ri ...
分类:其他好文   时间:2021-03-15 11:18:18    阅读次数:0
Leetcode 107. Binary Tree Level Order Traversal II
Description: Given the root of a binary tree, return the bottom-up level order traversal of its nodes' values. (i.e., from left to right, level by lev ...
分类:其他好文   时间:2021-03-15 11:13:18    阅读次数:0
【数据结构】算法 Reverse Linked List II 反转链表的一部分
Reverse Linked List II 反转链表 Given the head of a singly linked list and two integers left and right where left <= right, reverse the nodes of the list ...
分类:编程语言   时间:2021-03-10 13:27:14    阅读次数:0
轮播图
var index=1; left.onclick=function () { index++ if (index>3) { index=0 } one.style.left=-index*800+"px" } right.onclick=function () { index-- if (inde ...
分类:其他好文   时间:2021-03-08 13:34:42    阅读次数:0
【数学】【多项式】快速傅里叶变换(FFT)
引入 求两个多项式的卷积 Description 给定两个多项式 \(F\left(x\right), G\left(x\right)\) 的系数表示法,求两个多项式的卷积。 如: \(F\left(x\right) = 2x + 1\) \(G\left(x\right) = x^2 + 2x + ...
分类:其他好文   时间:2021-03-01 13:07:46    阅读次数:0
CSS样式-浮动
浮动,就是使元素脱离标准流,移动到其父元素指定的位置的过程,包括float: left float: right; 浮动常见的问题: 1.浮动的子元素无法超出父元素的范围; <head> <style type="text/css"> #father { width: 200px; height:  ...
分类:Web程序   时间:2021-02-27 13:17:54    阅读次数:0
Redis随记--HyperLogLog的代码学习02
简易版HyperLogLog Python代码: import math import random import uuid import hashlib from bisect import bisect_right HLL_ALPHA_INF = 0.721347520444481703680 ...
分类:其他好文   时间:2021-02-25 12:14:18    阅读次数:0
cotex m4 汇编指令集
16位数据操作指令 名字 功能ADC 带进位加法(ADD with Carry) ADD 加法 AND 按位与。这里的按位与和C的”&”功能相同 ASR 算术右移(Arithmetic Shift Right) BIC 按位清零(把一个数跟另一个无符号数的反码按位与) CMN 负向比较(把一个数跟另 ...
分类:其他好文   时间:2021-02-22 12:19:54    阅读次数:0
用Python画一颗心、小人发射爱心(附源码)
先画一个爱心, 源代码: #!/usr/bin/env python # -*- coding:utf-8 -*- import turtle import time # 画心形圆弧 def hart_arc(): for i in range(200): turtle.right(1) turtl ...
分类:编程语言   时间:2021-02-20 12:23:41    阅读次数:0
9304条   上一页 1 ... 4 5 6 7 8 ... 931 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!