zoukankan      html  css  js  c++  java
  • 编程之美第一题,参考某同事的算法和文章

                Process p = Process.GetCurrentProcess();

                
    const double SPLIT = 0.01;
                
    const int COUNT = 200;
                
    const double PI = 3.14159265;
                
    const int INTERVAL = 100;

                
    double[] busySpan = new double[COUNT];  //array of busy times
                double[] idleSpan = new double[COUNT];  //array of idle times
                int half = INTERVAL / 2;

                
    double radian = 0.0;
                
    for (int i = 0; i < COUNT; i++)
                {
                    busySpan[i] 
    = (double)(half + (Math.Sin(PI * radian) * half));
                    idleSpan[i] 
    = INTERVAL - busySpan[i];
                    radian 
    += SPLIT;
                }

                
    double startTime = 0;
                
    int j = 0;

                
    while (true)
                {
                    j 
    = j % COUNT;

                    startTime 
    = Environment.TickCount;

                    p.ProcessorAffinity 
    = (IntPtr)0x0001;
                    
    while ((Environment.TickCount - startTime) <= busySpan[j]) ;

                    p.ProcessorAffinity 
    = (IntPtr)0x0002;
                    
    while ((Environment.TickCount - startTime) <= idleSpan[j]) ;

                    j
    ++;
                }
  • 相关阅读:
    时空权衡之计数排序
    何时发生隐式类型转换
    常量指针与指针常量的区别
    虚函数有关面试题
    C++中数组定义及初始化
    InputStream类的available()方法
    FORK()函数
    面向对象三大基本特性,五大基本原则
    SpringMVC工作原理
    java文件的上传
  • 原文地址:https://www.cnblogs.com/Jax/p/1695295.html
Copyright © 2011-2022 走看看