33

我最近收到了一个面试问题:

给定一个 12 小时的模拟时钟,计算时针和分针之间较小角度的度数。尽可能精确。

我想知道最简单、最易读、最精确的算法是什么。欢迎使用任何语言的解决方案(但如果您认为有必要,请稍微解释一下)。

4

10 回答 10

43

事实证明,维基百科确实有最好的答案:

// h = 1..12, m = 0..59
static double angle(int h, int m) {
    double hAngle = 0.5D * (h * 60 + m);
    double mAngle = 6 * m;
    double angle = Math.abs(hAngle - mAngle);
    angle = Math.min(angle, 360 - angle);
    return angle;
}

基本上:

  • 时针以0.5每分钟度数的速度移动
  • 分针以6每分钟度数的速度移动

问题解决了。


并且精度不是问题,因为小数部分是.0.5,并且在 的范围内0..360,所有这些值都可以在 中精确表示double

于 2010-05-01T07:35:25.150 回答
8

求时钟指针之间的角度是 ,

30 * [HRS - (MIN/5)] + (MIN/2) 
于 2012-03-09T14:01:37.317 回答
5

polygenlubricants的java代码和我的差不多。假设时钟是 12 小时而不是 24 小时。

如果是24小时,那就另当别论了。此外,另一个假设是假设在我们计算时时钟是否停止。

一个时钟周期是 360 度。

  1. 分针每分钟能走多少度?360 / 60 = 每分钟 6 度。

  2. 时针每小时能走多少度?360/12 = 每小时 30 度(因为时针比分钟慢)

由于单位更容易计算,“分钟”,让我们得到

“时针每分钟能走多少度”?

30 / 60 = 每分钟 0.5 度。

因此,如果您知道如何获得这些数字,那么问题就可以通过解决方案完成了。

于 2011-12-01T03:31:21.223 回答
1

试试这个代码:

import java.util.Scanner;

class Clock{

    public static void main(String args[]){
        int hours,mins;

    System.out.println("Enter the Time(hours) : ");
        Scanner dx = new Scanner(System.in);
        hours = dx.nextInt();

    System.out.println("Enter the time(mins) : ");
        Scanner fx = new Scanner(System.in);
        mins = fx.nextInt();

    if(hours>=0 && hours<=12){

        if(mins>=0 && mins<=59){
            double hDegrees = (hours * 30) + (mins * 0.5);
                    double mDegrees = mins * 6;
                    double diff  = Math.abs(hDegrees - mDegrees);

        System.out.println("The angle between sticks is (degrees) : "+diff);
                if (diff > 180){ 

                diff = 360 - diff;
        System.out.println("The angle between sticks is (degrees) : "+diff);
                }

        }

    }

    else{
        System.out.println("Wrong input ");
    }


}

}
于 2013-08-16T08:22:50.373 回答
1
    **php code for find angle via time (minutes and hour's)**

    echo calcAngle(3,70);

function calcAngle($h, $m)
{
    // validate the input
    if ($h <0 || $m < 0 || $h >12 || $m > 60)
      {
       return "Wrong input";
      }
      else {

    if ($h == 12) $h = 0;
    if ($m == 60) $m = 0;

    $hour_angle = 0.5 * ($h*60 + $m);
    $minute_angle = 6*$m;
    $angle = abs($hour_angle - $minute_angle);
    $angle = min(360-$angle, $angle);

    return $angle;
}
}
于 2017-08-10T04:48:43.270 回答
1

分角(从 12 点开始):360 * 分 / 60

小时角(从 12 点开始):360 *(小时 % 12)/12 + 360 *(分钟/60)*(1 / 12)

小时和分钟之间的角度:(小时角度 - 分钟角度)% 360 通过简单的算术,这减少到 30 * 小时 - 5.5 * 分钟。

于 2015-10-02T02:38:32.170 回答
0

The problem is known as a “Clock Angle Problem”</a> where we need to find the angle between the hands (hour & minute) of an analog clock at a particular time.

Solution in C Programming Language.

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<inttypes.h>
#include<assert.h>

#define STRING_LENGTH 6

double angle_between_hour_min_hand(char[]);

int main(void) {
    uint8_t test;
    printf("Enter the number of test cases\n");
    scanf("%"SCNu8,&test);
    assert(test>0);
    while(test--) {
        char time_digital[STRING_LENGTH];
        printf("Enter the time\n");
        scanf("%s",time_digital);
        double angle_between_hands_deg = angle_between_hour_min_hand(time_digital);
        abs(angle_between_hands_deg) < angle_between_hands_deg ? printf("%0.1f\n",angle_between_hands_deg) : printf("%d\n",abs(angle_between_hands_deg));
    }
    return 0;
}

double angle_between_hour_min_hand(char time_digital[]) {
    uint8_t hr,min;
    double hr_angle_deg,min_angle_deg,angle_between_hands_deg;
    char*buffer = calloc(sizeof(char),STRING_LENGTH);
    if(buffer) {
        snprintf(buffer,STRING_LENGTH,"%s",time_digital);
        hr = atoi(__strtok_r(buffer,":",&buffer));
        min = atoi(__strtok_r(NULL,":",&buffer));
        buffer -= strlen(time_digital);
        free(buffer);
        hr_angle_deg = (double)(30*hr) + (double) (0.5*min);
        // printf("hr-angle: %f\n", hr_angle_deg);
        min_angle_deg = 6*min;
        // printf("min-angle: %f\n", min_angle_deg);
        angle_between_hands_deg = (hr_angle_deg > min_angle_deg) ? hr_angle_deg - min_angle_deg : min_angle_deg - hr_angle_deg;
        if(angle_between_hands_deg > 180) {
            angle_between_hands_deg = 360 - angle_between_hands_deg;
        }
    }
    else fprintf(stderr,"Memory not allocated to the buffer pointer!\n");
    return angle_between_hands_deg;
}

Compile the above program in your system, I used Ubuntu 18.04 LTS Bionic Beaver, you can use any system which has a C compiler installed.

gcc -Wall -g clock_angle_sol.c -o clock_angle_sol
./clock_angle_sol
Enter the time in 12-hour or 24 hour i.e (hr:min) format: 12:45
Angle: 112.00 degrees.

Notes:
1. The equation
$\theta_{hr} = (30^\circ \times hour) + (0.5^\circ \times minute)$ will give you the angle made by hour hand in 12-hour clock.
2. If you want to calculate the angle made by hour hand in a 24-hour clock, then use the following equation: $\theta_{hr} = (15^\circ \times hour) + (0.25^\circ \times minute)$
3. Second hand also contribute to the rotation of the minute hand, but we ignored it because the contribution is insignificant i.e. 1/10 = 0.1.

于 2019-08-13T07:29:41.507 回答
-1

这是一种解决方案(C#)。这是一个非常简单的解决方案,忽略了精度。希望解决方案是不言自明的。

public static double GetAngle(int hourHand, int minuteHand)
    {
        double oneMinuteAngle = (360 / 60);
        double oneHourAngle = (360 / 12);

        double hourAngle = oneHourAngle * hourHand;
        double minuteAngle = oneMinuteAngle * minuteHand;

        return (Math.Abs(hourAngle - minuteAngle));
    }
于 2017-05-30T23:56:29.873 回答
-3

我不知道它是否正确,像这样的东西?

//m*360/60 - (h*360/24)+(m*360/(24*60)) ->
t = abs(25*m - 60*h)/4
t = min(t,360-t)
于 2010-05-01T05:14:28.647 回答
-3

找到时针和分针之间的角度是

angle=(hour*5-min)*6
于 2014-03-09T16:54:37.877 回答