? Trung is bored with his mathematics homeworks. He takes a piece of chalk and starts writing a sequence of consecutive integers starting with 1 to N ...
分类:
其他好文 时间:
2021-02-01 12:17:16
阅读次数:
0
新服务器 git clone php项目时报错 [root@10-10-5-60 php]# git clone http://xxx/xxx/php.git Cloning into 'php'... remote: Counting objects: 91687, done remote: Fi ...
分类:
其他好文 时间:
2020-12-16 11:42:57
阅读次数:
3
希望从该文章中获取BCP的认识以及叙述方式 sharpSAT – Counting Models with Advanced Component Caching and Implicit BCP Thurley M. (2006) sharpSAT – Counting Models with Ad ...
分类:
其他好文 时间:
2020-12-15 11:42:56
阅读次数:
1
题意 统计树中的每一层有多少叶子结点,要求逐层输出 思路 逐层输出,刚好层序遍历是逐层扩展,所以我就直接用BFS了 代码 #include <algorithm> #include <cstdio> #include <cstring> #include <iostream> #include <v ...
分类:
其他好文 时间:
2020-10-06 20:54:35
阅读次数:
26
题目 https://pintia.cn/problem-sets/994805342720868352/problems/994805430595731456 题意 找出1-n中1出现的个数 Sample Input: 12 Sample Output: 5 思路 参考从1到n整数中1出现的次数: ...
分类:
其他好文 时间:
2020-09-17 12:30:09
阅读次数:
17
http://acm.hdu.edu.cn/showproblem.php?pid=6880 根据长度为n的排列a,构造长度n-1的序列b 思路:DP 官方题解: 代码: #include<iostream> #include<cstdio> #include<cstring> #include<a ...
分类:
其他好文 时间:
2020-09-03 17:00:42
阅读次数:
38
垃圾收集算法的实现涉及大量的细节,且各个平台的虚拟机操作内存的方法各有差异,本文主要讲分代收集的理论和几种算法回收的思想。 从如何判断对象的消亡角度出发,垃圾收集算法可以划分为两类:“引用计数式垃圾收集”(Reference Counting GC)和“追踪式垃圾收集” (Tracing GC)两大 ...
分类:
编程语言 时间:
2020-07-26 01:09:29
阅读次数:
99
克隆羊问题 现在有一只羊,姓名为:tom,年龄为:1,颜色为:白色,请编写程序创建和tom羊属性完全相同的10只羊。 传统方式解决克隆羊问题 public class Sheep { private String name; private int age; private String color ...
分类:
其他好文 时间:
2020-07-22 11:42:09
阅读次数:
93
1. rstrip()方法,去掉字符串结尾空格 >>> name = "Sheep Core " >>> name.rstrip() 'Sheep Core' #已经去掉末尾空格 2. lstrip() 方法,去掉字符串开头空格 >>> name = " Sheep Core" >>> name.l ...
分类:
编程语言 时间:
2020-07-04 11:46:31
阅读次数:
83
垃圾收集器与内存分配策略 概述 程序计数器,虚拟机栈,本地方法栈随线程创建而产生,随线程销毁而消失,内存的分配和回收具有确定性,一般不考虑回收问题. 对象存活性判断 引用计数算法(Reference Counting) 特点: 在对象中添加一个引用计数器. 当有一个引用时,计数器加一;当一个引用失效 ...
分类:
编程语言 时间:
2020-07-01 09:45:16
阅读次数:
54