📌  相关文章
📜  如果给出了圆心和半径,则两个圆之间的公切线数

📅  最后修改于: 2021-04-23 16:55:18             🧑  作者: Mango

给定两个具有给定半径和中心的圆。任务是找到这些圆之间的公共切线数。
例子:

Input: x1 = -10, y1 = 8, x2 = 14, y2 = -24, r1 = 30, r2 = 10
Output: 3

Input: x1 = 40, y1 = 8, x2 = 14, y2 = 54, r1 = 39, r2 = 51
Output: 2

方法

  • 首先,我们将检查圆是否在外部相互接触,相交或根本不接触。(请参阅此处)

  • 然后,如果圆不在外部相互接触,则显然它们将具有4个公共切线,两个正切线和两个横向切线。

  • 如果圆在外部相互接触,则它们将具有3个公共切线,两个正切线和一个横向切线。
    两者之间的切线可以看作是横向切线重合在一起。

  • 如果圆彼此相交,则它们将具有2条公共切线,它们都是直接的。

  • 如果一个圆在另一个圆内,则它们将只有一个公共切线。

下面是上述方法的实现:

C++
// C++ program to find
// the number of common tangents
// between the two circles
 
#include 
using namespace std;
 
int circle(int x1, int y1, int x2,
        int y2, int r1, int r2)
{
 
    int distSq = (x1 - x2) * (x1 - x2)
                + (y1 - y2) * (y1 - y2);
 
    int radSumSq = (r1 + r2) * (r1 + r2);
 
    if (distSq == radSumSq)
        return 1;
    else if (distSq > radSumSq)
        return -1;
    else
        return 0;
}
 
// Driver code
int main()
{
    int x1 = -10, y1 = 8;
    int x2 = 14, y2 = -24;
    int r1 = 30, r2 = 10;
    int t = circle(x1, y1, x2,
                y2, r1, r2);
    if (t == 1)
        cout << "There are 3 common tangents"
            << " between the circles.";
    else if (t < 0)
        cout << "There are 4 common tangents"
            << " between the circles.";
    else
        cout << "There are 2 common tangents"
            << " between the circles.";
 
    return 0;
}


Java
// Java program to find
// the number of common tangents
// between the two circles
import java.io.*;
 
class GFG
{
     
static int circle(int x1, int y1, int x2,
        int y2, int r1, int r2)
{
 
    int distSq = (x1 - x2) * (x1 - x2)
                + (y1 - y2) * (y1 - y2);
 
    int radSumSq = (r1 + r2) * (r1 + r2);
 
    if (distSq == radSumSq)
        return 1;
    else if (distSq > radSumSq)
        return -1;
    else
        return 0;
}
 
// Driver code
public static void main (String[] args)
{
 
    int x1 = -10, y1 = 8;
    int x2 = 14, y2 = -24;
    int r1 = 30, r2 = 10;
    int t = circle(x1, y1, x2,
                y2, r1, r2);
    if (t == 1)
        System.out.println ("There are 3 common tangents"+
                    " between the circles.");
    else if (t < 0)
        System.out.println ("There are 4 common tangents"+
            " between the circles.");
    else
        System.out.println ("There are 2 common tangents" +
                " between the circles.");
 
     
}
}
 
// This code is contributed by ajit.


Python3
# Python3 program to find
# the number of common tangents
# between the two circles
 
def circle(x1, y1, x2,y2, r1, r2):
 
 
    distSq = (x1 - x2) * (x1 - x2)+ (y1 - y2) * (y1 - y2)
 
    radSumSq = (r1 + r2) * (r1 + r2)
 
    if (distSq == radSumSq):
        return 1
    elif (distSq > radSumSq):
        return -1
    else:
        return 0
 
 
# Driver code
x1,y1 = -10,8;
x2,y2 = 14,-24;
r1,r2 = 30,10;
 
t = circle(x1, y1, x2,y2, r1, r2);
 
if (t == 1):
    print("There are 3 common tangents between the circles.")
elif (t < 0):
    print("There are 4 common tangents between the circles.")
else:
    print("There are 2 common tangents between the circles.")
 
# This code is contributed by mohit kumar 29


C#
// C# program to find
// the number of common tangents
// between the two circles
using System;
 
class GFG
{
     
static int circle(int x1, int y1, int x2,
        int y2, int r1, int r2)
{
 
    int distSq = (x1 - x2) * (x1 - x2)
                + (y1 - y2) * (y1 - y2);
 
    int radSumSq = (r1 + r2) * (r1 + r2);
 
    if (distSq == radSumSq)
        return 1;
    else if (distSq > radSumSq)
        return -1;
    else
        return 0;
}
 
// Driver code
public static void Main (String []args)
{
 
    int x1 = -10, y1 = 8;
    int x2 = 14, y2 = -24;
    int r1 = 30, r2 = 10;
    int t = circle(x1, y1, x2,
                y2, r1, r2);
    if (t == 1)
        Console.WriteLine ("There are 3 common tangents"+
                    " between the circles.");
    else if (t < 0)
        Console.WriteLine ("There are 4 common tangents"+
            " between the circles.");
    else
        Console.WriteLine ("There are 2 common tangents" +
                " between the circles.");
 
}
}
 
// This code is contributed by Arnab Kundu


PHP
 $radSumSq)
        return -1;
    else
        return 0;
}
 
    // Driver code
    $x1 = -10; $y1 = 8;
    $x2 = 14; $y2 = -24;
    $r1 = 30; $r2 = 10;
    $t = circle($x1, $y1, $x2,
                $y2, $r1, $r2);
    if ($t == 1)
        echo "There are 3 common tangents"
                ," between the circles.";
    else if ($t < 0)
        echo "There are 4 common tangents"
            , " between the circles.";
    else
        echo "There are 2 common tangents"
            , " between the circles.";
             
    // This code is contributed by AnkitRai01
?>


Javascript


输出:

There are 3 common tangents between the circles.