LeetCode-max-points-on-a-line

Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.

/**
 * Definition for a point.
 * class Point {
 *     int x;
 *     int y;
 *     Point() { x = 0; y = 0; }
 *     Point(int a, int b) { x = a; y = b; }
 * }
 */
public class Solution {
    public int maxPoints(Point[] points) {
          if(points == null || points.length<3)
            return points.length;
        int res =0;
        for(int i=1;i

 

你可能感兴趣的:(LeetCode,LeetCode,算法)