Chinaunix首页 | 论坛 | 博客
  • 博客访问: 253058
  • 博文数量: 170
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1709
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-06 18:01
文章分类

全部博文(170)

文章存档

2016年(11)

2015年(130)

2014年(29)

发布时间:2015-04-18 16:16:21

外部排序技术之多路归并......【阅读全文】

阅读(785) | 评论(0) | 转发(0)

发布时间:2015-04-16 18:08:16

  进程在内核的协调下进行相互间的通讯,主要包括三种方式:信号、管道和套接口三大类。信号  信号是Unix 系统中的最古老的进程间通讯方式。它们用来向一个或多个进程发送异步事件信号。信号可以从键盘中断中产生,另外进程对虚拟内存的非法存取等系统错误环境下也会有信号产生。信号还被she.........【阅读全文】

阅读(789) | 评论(0) | 转发(0)

发布时间:2015-04-16 15:56:43

//Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.////If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).////The replacement must be in-place, do not allocate e.........【阅读全文】

阅读(666) | 评论(0) | 转发(0)

发布时间:2015-04-16 11:15:58

//You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenation of each word in L exactly once and without any intervening characters.import java.util.ArrayList;import java.util.HashMap;import java.util.L.........【阅读全文】

阅读(1029) | 评论(0) | 转发(0)

发布时间:2015-04-15 10:39:37

import java.io.File;import java.io.FileNotFoundException;import java.util.ArrayList;import java.util.Scanner;public class RemoveIndex {public static void main(String[] args) {// TODO 自动生成的方法存根Scanner s = null;try {s = new Scanner(new File("F:\\输入.txt"));} catch (FileNotFound.........【阅读全文】

阅读(722) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册