1. 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.
  2. Example 1:
  3. Input: coordinates = [[1,2],[2,3],[3,4],[4,5],[5,6],[6,7]]
  4. Output: true
  5. Example 2:
  6. Input: coordinates = [[1,1],[2,2],[3,4],[4,5],[5,6],[7,7]]
  7. Output: false
  8. Constraints:
  9. 2 <= coordinates.length <= 1000
  10. coordinates[i].length == 2
  11. -10^4 <= coordinates[i][0], coordinates[i][1] <= 10^4
  12. coordinates contains no duplicate point.

这题求给出的N个坐标点是否能连成一条直线。我们可以解出两两坐标点之间的斜率,看看是否相等即可。

所以我踩了一个坑,没有考虑到y坐标一样的情况。这种场景要单独考虑。

  1. class CheckIfItIsAStraightLine : public Solution {
  2. public:
  3. void Exec() {
  4. }
  5. bool checkStraightLine(vector<vector<int>>& coordinates) {
  6. float prev_value = 0.0f;
  7. int hor = 0;
  8. for (int i = 1; i < coordinates.size(); i++) {
  9. float value = 0;
  10. bool cur_hor = false;
  11. if (coordinates[i][1] - coordinates[i - 1][1] == 0) {
  12. cur_hor = true;
  13. } else {
  14. value =
  15. ((float)coordinates[i][0] - (float)coordinates[i - 1][0]) /
  16. ((float)coordinates[i][1] - float(coordinates[i - 1][1]));
  17. }
  18. if (cur_hor || hor == 1) {
  19. if (cur_hor != (hor == 1 || hor == 0)) {
  20. return false;
  21. }
  22. hor = 1;
  23. } else {
  24. hor = 2;
  25. if (i == 1) {
  26. prev_value = value;
  27. } else if (prev_value != value) {
  28. return false;
  29. }
  30. }
  31. }
  32. return true;
  33. }
  34. };
共 0 条回复
暂时没有人回复哦,赶紧抢沙发
发表新回复

作者

sryan
today is a good day