最新文章

按时间整理的技术笔记、参考与实验记录。

文章数
53
页面
56
  1. Interview

    重载和覆盖的区别

    重载和覆盖是笔试和面试中经常考的两个概念。这两个概念从概念本身到实现机理都不相同,但是表现形式却有相似之处。本文从实现机理入手,深入讲解两者的不同之处。

  2. Interview

    面向对象技术中的三大特征

    面试中经常会问面向对象技术中的三大特征,但是却没有一本书把这三个特征讲透彻,这里尝试综合几本书中的内容,从不同角度理解这三大特征。

  3. ACM

    Solution to POJ 1061

    将问题转换为二元线性丢番图方程,然后运用扩展欧几里德算法求解。

  4. ACM

    Solution to POJ 1009

    关键在于一定不能使用模拟法,并且要对几种情况进行有效的优化。

  5. ACM

    Solution to POJ 1018

    Enumerate candidate bandwidths, compute the minimum total price for each one, and then maximize the final bandwidth-to-price ratio.

  6. ACM

    Solution to POJ 1019

    Precompute the lengths of nested digit sequences, use binary search to locate the target block, and then extract the exact digit.

  7. ACM

    Solution to POJ 1045

    Simplify the circuit equations, derive the closed-form relationship for the receiver voltage, and note the numeric-differentiation alternat…