摘要:
对整数开方 思路:二分法,牛顿迭代法 java: 牛顿迭代法 阅读全文
摘要:
计算二进制 java: 阅读全文
摘要:
旋转链表 思路: 把链表连接为一个闭合的环,然后从头计数,到位置剪开 java: 阅读全文
摘要:
螺旋矩阵 Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. For example,Given n = 3, You should return the fo 阅读全文