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
    ++;
                }
  • 相关阅读:
    按之字形打印二叉树 --剑指offer
    浅谈PHP+Access数据库的连接 注意要点
    Linux下统计代码行数
    获取服务器IP,客户端IP
    CURL访问举例
    廖雪峰博客
    Redis命令
    svn merge和branch 详解
    Linux Screen超简明教程
    MySQL 的Coalesce函数
  • 原文地址:https://www.cnblogs.com/Jax/p/1695295.html
Copyright © 2011-2022 走看看