码迷,mamicode.com
首页 >  
搜索关键字:buddy system    ( 49281个结果
C# Parallel类的作用
System.Threading.Tasks.Parallel是能够以并行的方式迭代数据集合(实现了IEnumerable的对象),它主要提供2个方法:For()和ForEach() 事例: using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Net.Consol...
分类:其他好文   时间:2014-05-10 08:59:10    阅读次数:302
NET简单的一个画图程序
using System;using System.Drawing;//HttpUtility.UrlEncode/// ///Curve 的摘要说明/// public class Curve{ public Curve() { // //TODO: 在此处...
分类:Web程序   时间:2014-05-10 07:36:33    阅读次数:491
公共的Json操作类
using System;using System.Data;using System.Text;using System.Collections.Generic;using System.Reflection;using System.Data.Common;using System.Collec...
分类:Web程序   时间:2014-05-10 07:27:45    阅读次数:474
java语言实现快速排序的两种方式
方法一:public class QuickSortExp1{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sor.....
分类:编程语言   时间:2014-05-10 05:08:46    阅读次数:496
java 语言实现选择排序
public class TestSelectSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sortin.....
分类:编程语言   时间:2014-05-10 05:04:52    阅读次数:322
系统启动时出现 An error occurred during the file system check.
系统配置的yum源是163的镜像站,本来想用lsb_release命令查看一下系统的版本等信息,结果显示没有此命令,那就安装其相关软件包吧,用yum-yinstallredhat-lsb相依属性列出了40个软件包,本来没想安装这么多,愣了个神还没有按y键呢系统自己就莫名其妙又继续了,继续就继续吧,..
分类:其他好文   时间:2014-05-10 04:01:38    阅读次数:649
Linux System Programming 学习笔记(一) 介绍
1. Linux系统编程的三大基石:系统调用、C语言库、C编译器系统调用:内核向用户级程序提供服务的唯一接口。在i386中,用户级程序执行软件中断指令 INT n 之后切换至内核空间用户程序通过寄存器告知内核执行系统调用的所需参数2. API 和 ABIAPI:application program...
分类:系统相关   时间:2014-05-10 03:22:26    阅读次数:321
java 语言实现插入排序
public class InsertSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sorting ,t.....
分类:编程语言   时间:2014-05-10 03:13:15    阅读次数:342
sysctl 中文手册
SYSCTL(8) System Administration SYSCTL(8)名字 sysctl - 在运行时配置内核参数语法 sysctl [options] [variable[=value]]...
分类:其他好文   时间:2014-05-10 02:55:31    阅读次数:290
mount 中文手册
MOUNT(8) System Administration MOUNT(8)名称 mount - 挂载文件系统语法 mount [-lh...
分类:其他好文   时间:2014-05-10 02:38:33    阅读次数:506
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!