CPoint2D* CTraverseNetCalcu::SearchAllPoint(CString strID) { CPoint2D* tmp; tmp = NULL; for (int i = 0; i < iKnown; i++) { if (strID == pKnown[i].strID) { tmp = &pKnown[i]; break; } } if (tmp == NULL) { for (int i = 0; i < iUnknown; i++) { if (strID == pUnknown[i].strID) { tmp = &pUnknown[i]; break; } } } return tmp; }
时间: 2023-12-06 12:02:25 浏览: 77
根据您提供的代码段,这是一个名为 `CTraverseNetCalcu` 的类的成员函数 `SearchAllPoint`。该函数接受一个 `CString` 类型的参数 `strID`,并返回一个指向 `CPoint2D` 对象的指针。
函数中的代码实现了在已知点集合和未知点集合中搜索指定 `strID` 的点,并将找到的点的地址赋值给 `tmp` 指针。
首先,将 `tmp` 初始化为 `NULL`。然后,通过一个循环遍历已知点集合(`pKnown` 数组),如果找到与 `strID` 相匹配的点,则将该点的地址赋值给 `tmp` 并跳出循环。
如果在已知点集合中找不到匹配的点,则进入第二个循环,遍历未知点集合(`pUnknown` 数组)。如果找到与 `strID` 相匹配的点,则同样将该点的地址赋值给 `tmp` 并跳出循环。
最后,函数返回 `tmp` 指针,该指针可能指向找到的点对象,或者为 `NULL`(表示未找到匹配的点)。
请注意,函数中引用的 `pKnown[i]` 和 `pUnknown[i]` 可能是指向 `CPoint2D` 对象的指针数组。另外,您可能需要查看其他部分的代码来了解这些数组的定义
相关问题
CPoint2D CTraverseNetCalcu::LP2CP(const CPoint2D& Point, CRect& rect)//逻辑坐标转客户区坐标 { CPoint2D P; P = Point; P.y_draw = rect.Height() - (Point.x - x_min) * k; P.x_draw = (Point.y - y_min) * k; P.y_draw -= rect.Width() / 10; P.x_draw += rect.Height() / 10; return P; }
这段代码实现了一个名为`LP2CP`的函数,用于将逻辑坐标转换为客户区坐标。
该函数接受一个逻辑坐标`Point`和一个矩形区域`rect`作为输入参数。
首先,创建一个空的`CPoint2D`对象`P`。
然后,将输入的逻辑坐标的x轴值减去`x_min`并乘以`k`,将结果赋值给`P.y_draw`,表示转换后的y轴值。
接着,将输入的逻辑坐标的y轴值减去`y_min`并乘以`k`,将结果赋值给`P.x_draw`,表示转换后的x轴值。
然后,将转换后的y轴值减去客户区宽度的1/10,将结果赋值给`P.y_draw`,表示向上调整了一定比例。
最后,将转换后的x轴值加上客户区高度的1/10,将结果赋值给`P.x_draw`,表示向右调整了一定比例。
最终,返回转换后的客户区坐标`P`。
请补全代码#include <iostream> #include <cstdlib> #include <cmath> #include <cstring> #include <ctime> using namespace std; /* 请编程实现一个简易的屏幕窗口模拟,具体要求如下: * 编写 CPoint 类,描述二维平面内的一个坐标点,包含 x,y 两个坐标,重载 >> 运算符以实现输出形如 (x,y) 的信息。 * 编写 CWindow 类,描述平面上的一个窗口,包含如下信息: int id ,窗口唯一标识,为了保证唯一性,可以使用 (int)time(NULL) 返回的时间戳赋值。 char title[255] ,窗口标题 CPoint topleft,bottomright ,左上角和右下角的坐标 两种形态的构造函数: 提供标题和两点坐标的:CWindow(const char* title,CPoint topleft,CPoint bottomright) 提供标题和左上角坐标以及窗口高宽的:CWindow(const char* title,CPoint topleft,int width,int height) 一个静态成员 CWindow* topmost ,指向当前活动窗口,可以初始化为 nullptr 一个 Activate() 方法,将当前窗口置为活动窗口 重载 >> 运算符输出窗口信息,形如 title (x,y)-(x,y) ,参见测试用例输出结果 * 其它成员如果需要请自行编写,例如 CPoint 可以设计 getX 和 getY 接口便于 CWindow 根据高宽计算右下角坐标 主程序生成了三个窗口并随机激活了一个,然后输出了激活后窗口的信息,请参考测试用例的输出进行编程。 / 点击在此输入一行或多行代码 //主程序 int main() { //主程序代码仅为测试类的设计而编写 //伪随机化,真随机请使用 srand(time(NULL)); //srand(2022); //最大窗口数量 const int MAX = 3; / 注意屏幕的坐标系为: (0,0) _____________x | | | y | */ //生成 MAX 个窗口对象存储在数组中 CWindow windows[MAX] {{"notepad",CPoint(10,20),CPoint(20,5)}, //提供两点坐标初始化 {"mspaint",CPoint(10,20),5,6}, //提供一点坐标加高宽初始化 {"code",CPoint(2,20),CPoint(30,1)} //提供两点坐标初始化 }; //随机选择一个窗口激活到前台 windows[rand()%MAX].Activate(); //输出这个前台窗口信息 cout << *CWindow::topmost << endl; return 0; }
下面是代码实现:
```cpp
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <ctime>
using namespace std;
class CPoint {
public:
CPoint() : x(0), y(0) {}
CPoint(int x, int y) : x(x), y(y) {}
friend ostream& operator<<(ostream& os, const CPoint& p) {
os << "(" << p.x << "," << p.y << ")";
return os;
}
int getX() const { return x; }
int getY() const { return y; }
private:
int x, y;
};
class CWindow {
public:
CWindow(const char* title, CPoint topleft, CPoint bottomright) : id((int)time(NULL)), topleft(topleft), bottomright(bottomright) {
strncpy(this->title, title, 255);
this->title[254] = '\0';
}
CWindow(const char* title, CPoint topleft, int width, int height) : id((int)time(NULL)), topleft(topleft) {
strncpy(this->title, title, 255);
this->title[254] = '\0';
bottomright = CPoint(topleft.getX() + width, topleft.getY() + height);
}
static CWindow* topmost;
void Activate() { topmost = this; }
friend ostream& operator<<(ostream& os, const CWindow& w) {
os << w.title << " " << w.topleft << "-" << w.bottomright;
return os;
}
private:
int id;
char title[255];
CPoint topleft, bottomright;
};
CWindow* CWindow::topmost = nullptr;
int main() {
//主程序代码仅为测试类的设计而编写
//伪随机化,真随机请使用 srand(time(NULL));
//srand(2022);
//最大窗口数量
const int MAX = 3;
/* 注意屏幕的坐标系为:
(0,0) _____________x
| |
| |
y |
*/
//生成 MAX 个窗口对象存储在数组中
CWindow windows[MAX] = {
{"notepad", CPoint(10, 20), CPoint(20, 5)}, //提供两点坐标初始化
{"mspaint", CPoint(10, 20), 5, 6}, //提供一点坐标加高宽初始化
{"code", CPoint(2, 20), CPoint(30, 1)} //提供两点坐标初始化
};
//随机选择一个窗口激活到前台
windows[rand() % MAX].Activate();
//输出这个前台窗口信息
cout << *CWindow::topmost << endl;
return 0;
}
```
代码中定义了 `CPoint` 和 `CWindow` 两个类,其中 `CPoint` 类表示二维平面内的一个坐标点,包含 `x` 和 `y` 两个坐标,重载了 `<<` 运算符以实现输出形如 `(x,y)` 的信息。`CWindow` 类描述平面上的一个窗口,包含窗口唯一标识 `id`、窗口标题 `title`、左上角和右下角的坐标 `topleft` 和 `bottomright`。`CWindow` 类还包含两种形态的构造函数:提供标题和两点坐标的 `CWindow(const char* title,CPoint topleft,CPoint bottomright)` 和提供标题和左上角坐标以及窗口高宽的 `CWindow(const char* title,CPoint topleft,int width,int height)`。`CWindow` 类还有一个静态成员 `CWindow* topmost`,指向当前活动窗口,可以初始化为 `nullptr`。`CWindow` 类中还有一个 `Activate()` 方法,将当前窗口置为活动窗口。重载了 `<<` 运算符输出窗口信息,形如 `title (x,y)-(x,y)`,参见测试用例输出结果。
在 `main()` 函数中,生成了三个窗口对象存储在数组中。随机选择一个窗口激活到前台,并输出这个前台窗口信息。
阅读全文