摘要:
Python GC主要运用了“引用计数”(reference counting)来跟踪和回收垃圾。在引用计数的基础上,通过“标记-清除”(mark and sweep)解决容器对象可能产生的循环引用的问题。通过“分代回收”(generation collection)以空间换取时间来提高垃圾回收效率 阅读全文
摘要:
Python GC主要运用了“引用计数”(reference counting)来跟踪和回收垃圾。在引用计数的基础上,通过“标记-清除”(mark and sweep)解决容器对象可能产生的循环引用的问题。通过“分代回收”(generation collection)以空间换取时间来提高垃圾回收效率 阅读全文
摘要:
#include <stdio.h> typedef int* int_ptr; typedef unsigned char* byte_ptr; void show_bytes( byte_ptr start, int len ){ int i; for( i = 0; i < len; ++i 阅读全文
摘要:
题目链接:http://poj.org/problem?id=2112 Description FJ has moved his K (1 <= K <= 30) milking machines out into the cow pastures among the C (1 <= C <= 20 阅读全文
摘要:
// Test.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using namespace std; #define LEFT(n) ((n 阅读全文
摘要:
import java.io.*; import java.net.*; import java.util.*; import javax.naming.*; import javax.naming.directory.*; public class SMTPMXLookup { private s 阅读全文
摘要:
<select id="language"> <option value="">请选择</option> <option value="Java">Java</option> <option value="PHP">PHP</option> <option value="Jekyll">Jekyll 阅读全文
摘要:
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Submit Status Description A checksum is an algorithm that scans a packet of data 阅读全文
摘要:
c++实现医院检验科排班程序 1、背景: 医院急诊检验科24h×7×365值班。工作人员固定。採取轮班制度。确保24h都有人值班。 本文就通过C++实现编敲代码自己主动排班,并能够转为Excel打印。 2、急诊检验科排班概况(口头咨询后整理): 1)、检验科人数:7人。 2)、上班类型:"夜班", 阅读全文
摘要:
LOL(英雄联盟) 战斗力查询 接口:http://lolbox.duowan.com/playerDetail.php?serverName=serverName&playerName=playerName 通过多玩的lol战斗力查询,将返回的页面信息,解析出来。 这里解析html用到了HTML 阅读全文
摘要:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+ 阅读全文
|