• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

[Swift]LeetCode1232.缀点成线|CheckIfItIsaStraightLine

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(let_us_code)
➤博主域名:https://www.zengqiang.org
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

You are given an array coordinates, coordinates[i] = [x, y], where [x, y] represents the coordinate of a point. Check if these points make a straight line in the XY plane.

Example 1:

 

Input: coordinates = [[1,2],[2,3],[3,4],[4,5],[5,6],[6,7]]
Output: true
Example 2:

 

Input: coordinates = [[1,1],[2,2],[3,4],[4,5],[5,6],[7,7]]
Output: false

Constraints:

2 <= coordinates.length <= 1000
coordinates[i].length == 2
-10^4 <= coordinates[i][0], coordinates[i][1] <= 10^4
coordinates contains no duplicate point.


在一个 XY 坐标系中有一些点,我们用数组 coordinates 来分别记录它们的坐标,其中 coordinates[i] = [x, y] 表示横坐标为 x、纵坐标为 y 的点。

请你来判断,这些点是否在该坐标系中属于同一条直线上,是则返回 <font color="#c7254e" face="Menlo, Monaco, Consolas, Courier New, monospace">true</font>,否则请返回 <font color="#c7254e" face="Menlo, Monaco, Consolas, Courier New, monospace">false</font>。

示例 1:

输入:coordinates = [[1,2],[2,3],[3,4],[4,5],[5,6],[6,7]]
输出:true
示例 2:

输入:coordinates = [[1,1],[2,2],[3,4],[4,5],[5,6],[7,7]]
输出:false

提示:

2 <= coordinates.length <= 1000
coordinates[i].length == 2
-10^4 <= coordinates[i][0], coordinates[i][1] <= 10^4
coordinates 中不含重复的点


40ms

 1 class Solution {
 2     func checkStraightLine(_ coordinates: [[Int]]) -> Bool {
 3     let cur = coordinates[0]
 4     let next = coordinates[1]
 5     
 6     let num = next[1] - cur[1]
 7     let denom = next[0]-cur[0]
 8     
 9     let slope = Double(num)/Double(denom)
10     
11     for i in 1..<coordinates.count-1{
12         let cur = coordinates[i]
13         let next = coordinates[i+1]
14         
15         let curNum = next[1] - cur[1]
16         let curDenom = next[0]-cur[0]
17         let cSlope = Double(curNum)/Double(curDenom)
18         
19         if( cSlope != slope ){
20             return false
21         }
22     }
23      return true
24     }
25 }

44ms

 1 class Solution {
 2     func checkStraightLine(_ coordinates: [[Int]]) -> Bool {
 3         let dx = coordinates[1][0] - coordinates[0][0]
 4         let dy = coordinates[1][1] - coordinates[0][1]
 5         for i in 2..<coordinates.count {
 6             let dx1 = coordinates[i][0] - coordinates[0][0]
 7             let dy1 = coordinates[i][1] - coordinates[0][1]
 8             if dx == 0 && dx1 != 0 {
 9                 return false
10             }
11             if dy == 0 && dy1 != 0 {
12                 return false
13             }
14             if dy == 0 && dy1 == 0 {
15                 continue
16             }
17             let dx2 = Double(dx) * Double(dy1) / Double(dy)
18             if Double(dx1) != dx2 {
19                 return false
20             }
21         }
22         return true
23     }
24 }

48ms

 1 class Solution {
 2     func getGradient(x2: Int, x1: Int, y2: Int, y1: Int) -> Double {
 3         return Double(y2 - y1) / Double(x2 - x1)
 4     }
 5     
 6     func checkStraightLine(_ coordinates: [[Int]]) -> Bool {
 7         var coordinates = coordinates
 8         if coordinates.count < 2 {
 9             return false
10         }
11         
12         var first = coordinates.removeFirst()
13         var gradient: Double = 0.0
14         
15         for point in coordinates {
16             let currentGradient = getGradient(x2: point[0], x1: first[0], y2: point[1], y1: first[1])
17             if gradient == 0.0 {
18                 gradient = currentGradient
19             }
20             if gradient != currentGradient {
21                 return false
22             }
23         }
24         return true
25     }
26 }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
算法与数据结构(十四) 堆排序 (Swift 3.0版)发布时间:2022-07-13
下一篇:
Swift NSAttributedString的使用发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap