240 发简信
IP属地:海南
  • Python 单例模式

    概述 单例模式(Singleton Pattern)是一种常用的软件设计模式,该模式的主要目的是确保某一个类只有一个实例存在。当你希望在整个系统...

  • virtualenvwrapper:Python 环境管理工具

    virtualenvwrapper:Python 环境管理工具 概况 在使用 Python 开发的过程中,工程一多,难免会碰到不同的工程依赖不同...

  • 剑指 Offer-求二进制中 1 的个数(Python 实现过程遇到的问题)

    输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。 思路 需要一个循环结构,不断对输入数进行 无符号 右移动。 在循环体的结构当中...

  • 剑指 Offer-求 1 + 2 + 3 + … + n(Python 实现过程遇到的问题)

    求 1 + 2 + 3 + … + n,要求不能使用乘除法、for、while、if、else、switch、case 等关键字及条件判断语句(...

  • Resize,w 360,h 240
    剑指 Offer-不用加减乘除做加法(Python 实现过程遇到的问题)

    写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。 基本解题思路 回顾十进制加法原理 以 5 + 7 = 12 为例...

  • Recursion

    Fibonacci A frog can jump one or two steps at a time. How many jumping m...

  • Algorithm

    Move all the 0s in the array to the end. Given two strings s and t , wri...

  • Recursion

    Fibonacci Find the maximum value among array elements Bubble sort gcd Hanoi

  • BST (Binary Search Tree)

    Some data structures and algorithms related to binary search trees. (imp...