二维A*算法

MATLAB2016b可以正常运行 

function bidirectional_ASTAR
clc;
clear;
%% 初始化界面
n = 11;   % field size n x n tiles  20*20的界面
%wallpercent = 0.3;  % this percent of field is walls   15%的界面作为阻碍物(墙)
cmap = [1 1 1; ...%  1 - white - 空地0 0 0; ...% 2 - black - 障碍 1 0 0; ...% 3 - red - 已搜索过的地方0 0 1; ...% 4 - blue - 下次搜索备选中心 0 1 0; ...% 5 - green - 起始点1 1 0;...% 6 - yellow -  到目 标点的路径 1 0 1];% 7 - -  目标点 
colormap(cmap); 
field = ones(n);
startposind =10;   %sub2ind用来将行列坐标转换为线性坐标,这里是必要的,因为如果把startposind设置成[x,y]的形式,访问field([x,y])的时候
goalposind =12;    %它并不是访问x行y列元素,而是访问线性坐标为x和y的两个元素
% field(ceil(n^2.*rand(floor(n*n*wallpercent),1) )) = Inf;
field(1:5, 7) = 2;
field(8,1:3) = 2; 
field(2:5,3:5)=2;field(8,10)=2;
% startposind = sub2ind([n,n],ceil(n.*rand),ceil(n.*rand));   %sub2ind用来将行列坐标转换为线性坐标,这里是必要的,因为如果把startposind设置成[x,y]的形式,访问field([x,y])的时候
%goalposind = sub2ind([n,n],ceil(n.*rand),ceil(n.*rand));    %它并不是访问x行y列元素,而是访问线性坐标为x和y的两个元素
field(startposind )=5;
field(goalposind )=7;
costchart = NaN*ones(n);      %costchart用来存储各个点的实际代价,NaN代表不是数据(不明确的操作)
costchart(startposind) = 0;     %起点的实际代价
fieldpointers = zeros(n);
fieldpointers1 = zeros(n);global setOpenCosts;global setOpenCosts1;global setOpen;global setOpen1;global setOpenHeuristics;global setOpenHeuristics1;
setOpen = (startposind); setOpenCosts = (0); setOpenHeuristics = (Inf);
setClosed = []; setClosedCosts = [];%初始化起点的open表和close表
setOpen1 = (goalposind); setOpenCosts1 = (0); setOpenHeuristics1 = (Inf);
setClosed1 = []; setClosedCosts1 = [];%初始化目标点的open表和close表[goalpos(1) ,goalpos(2)] = ind2sub([n n],goalposind);       %获得目标点的行列坐标
[startpos(1) ,startpos(2)] = ind2sub([n n],startposind);
uicontrol('Style','pushbutton','String','RE-DO', 'FontSize',12, ...'Position', [10 10 60 40], 'Callback','bidirectional_ASTAR');
tic
while true %ismember(A,B)返回与A同大小的矩阵,其中元素1表示A中相应位置的元素在B中也出现,0则是没有出现field(startposind )=5;field(goalposind )=7;image(1.5,1.5,field); grid on; axis image; set(gca,'gridline','-','gridcolor','r','linewidth',2);set(gca,'xtick',1:1:12,'ytick',1:1:12);drawnow;if(max(ismember(setOpen,setOpen1)))break;end;  [~, ii] = min(setOpenCosts + setOpenHeuristics);   %从OPEN表中选择花费最低的点temp,ii是其下标(也就是标号索引)[~, ii1] = min(setOpenCosts1 + setOpenHeuristics1);field(setOpen(ii))=3;field(setOpen1(ii1))=6;[currentpos(1), currentpos(2)] = ind2sub([n n],setOpen(ii));[currentpos1(1), currentpos1(2)] = ind2sub([n n],setOpen1(ii1));%获得以起点扩展的当前点的行列坐标,注意currentpos(1)是行坐标,currentpos(2)是列坐标%% 获得当前点的邻居[posinds,posinds1,cost,cost1,heuristic,heuristic1]=get_neighbors(n,ii,ii1,currentpos(1),currentpos(2),currentpos1(1),currentpos1(2),goalpos(1),goalpos(2),startpos(1),startpos(2));setClosed = [setClosed; setOpen(ii)];     %将temp插入CLOSE表中setClosedCosts = [setClosedCosts; setOpenCosts(ii)];  %将temp的花费计入ClosedCostssetClosed1 = [setClosed1; setOpen1(ii1)];     %将temp插入CLOSE表中setClosedCosts1 = [setClosedCosts1; setOpenCosts1(ii1)];  %将temp的花费计入ClosedCosts%% 新增节点的判断for jj=1:length(posinds)      %对于扩展的四个方向的坐标if(field(posinds(jj))~=3 && field(posinds(jj))~=2 && field(posinds(jj))~=5 &&posinds(jj)~=1)field(posinds(jj))=4;if ~max([setClosed; setOpen] == posinds(jj)) %如果此点不在OPEN表和CLOSE表中fieldpointers(posinds(jj)) = setOpen(ii); %将此点的方向存在对应的fieldpointers中costchart(posinds(jj)) = cost(jj); %将实际代价值存入对应的costchart中setOpen = [setOpen; posinds(jj)]; %将此点加入OPEN表中setOpenCosts = [setOpenCosts; cost(jj)];   %更新OPEN表实际代价setOpenHeuristics = [setOpenHeuristics; heuristic(jj)];    %更新OPEN表启发代价elseif max(setOpen == posinds(jj)) %如果此点在OPEN表中I = find(setOpen == posinds(jj));   %找到此点在OPEN表中的位置if setOpenCosts(I) > cost(jj)  %如果在OPEN表中的此点实际代价比现在所得的大costchart(setOpen(I)) = cost(jj);    %将当前的代价存入costchart中,注意此点在costchart中的坐标与其自身坐标是一致的(setOpen(I)其实就是posinds(jj)),下同fieldpointerssetOpenCosts(I) = cost(jj);      %更新OPEN表中的此点代价,注意此点在setOpenCosts中的坐标与在setOpen中是一致的,下同setOpenHeuristicssetOpenHeuristics(I) = heuristic(jj);    %更新OPEN表中的此点启发代价(窃以为这个是没有变的)fieldpointers(setOpen(I)) = setOpen(ii);   %更新此点的方向   endendendendfor jj=1:length(posinds1)      %对于扩展的四个方向的坐标if(field(posinds1(jj))~=6 && field(posinds1(jj))~=2 && field(posinds1(jj))~=7 && posinds1(jj)~=1)field(posinds1(jj))=4; if ~max([setClosed1; setOpen1] == posinds1(jj))%如果此点不在OPEN表和CLOSE表中fieldpointers1(posinds1(jj)) = setOpen1(ii1); %将此点的方向存在对应的fieldpointers中costchart(posinds1(jj)) = cost1(jj); %将实际代价值存入对应的costchart中setOpen1 = [setOpen1; posinds1(jj)]; %将此点加入OPEN表中setOpenCosts1 = [setOpenCosts1; cost1(jj)];   %更新OPEN表实际代价setOpenHeuristics1 = [setOpenHeuristics1; heuristic1(jj)];    %更新OPEN表启发代价elseif max(setOpen1 == posinds1(jj)) %如果此点在OPEN表中I = find(setOpen1 == posinds1(jj));   %找到此点在OPEN表中的位置if setOpenCosts1(I) > cost1(jj)  %如果在OPEN表中的此点实际代价比现在所得的大costchart(setOpen1(I)) = cost1(jj);    %将当前的代价存入costchart中,注意此点在costchart中的坐标与其自身坐标是一致的(setOpen(I)其实就是posinds(jj)),下同fieldpointerssetOpenCosts1(I) = cost1(jj);      %更新OPEN表中的此点代价,注意此点在setOpenCosts中的坐标与在setOpen中是一致的,下同setOpenHeuristicssetOpenHeuristics1(I) = heuristic1(jj);    %更新OPEN表中的此点启发代价(窃以为这个是没有变的)fieldpointers1(setOpen1(I)) = setOpen1(ii1);   %更新此点的方向   endendendend %% 更新open表update_open(ii,ii1)if (isempty(setOpen) && isempty(setOpen1))break; end    %当OPEN表为空,代表可以经过的所有点已经查询完毕
end
toc%% 查找并显示路径
if(max(ismember(setOpen,setOpen1)))disp('已找到路径!');  %disp: Display array, disp(X)直接将矩阵显示出来,不显示其名字,如果X为string,就直接输出文字Xb=intersect(setOpen,setOpen1);%取setClosed和setClosed1的交集path=b;%查找从起点开始搜索的路径while (fieldpointers(path(1)) ~= 0) path = [fieldpointers(path(1)), path];     end path2=b;%查找从终点搜索的路径while (fieldpointers1(path2(1)) ~= 0) path2 = [fieldpointers1(path2(1)), path2];     end p1=[path,flip(path2)]; %flip 颠倒矩阵for k = 2:length(p1) - 1 field(p1(k)) = 7;image(1.5, 1.5, field);grid on;set(gca,'gridline','-','gridcolor','r','linewidth',2);set(gca,'xtick',1:1:12,'ytick',1:1:12);axis image;drawnow;end
elsedisp('路径不存在!'); endtitle('基于{ \color{red}A*} 算法的路径规划 ','fontsize',16)
end%% 更新open表
function update_open(ii,ii1)global   setOpenCostsglobal   setOpenCosts1global   setOpenglobal   setOpen1global setOpenHeuristics;global setOpenHeuristics1;
%  更新OPEN表 分为三种情况%从起点开始的open表if (ii > 1 && ii < length(setOpen))   %temp在OPEN表的中间,删除tempsetOpen = [setOpen(1:ii-1); setOpen(ii+1:end)];setOpenCosts = [setOpenCosts(1:ii-1); setOpenCosts(ii+1:end)];setOpenHeuristics = [setOpenHeuristics(1:ii-1); setOpenHeuristics(ii+1:end)];elseif (ii == 1)setOpen = setOpen(2:end);   %temp是OPEN表的第一个元素,删除tempsetOpenCosts = setOpenCosts(2:end);setOpenHeuristics = setOpenHeuristics(2:end);else     %temp是OPEN表的最后一个元素,删除tempsetOpen = setOpen(1:end-1);setOpenCosts = setOpenCosts(1:end-1);setOpenHeuristics = setOpenHeuristics(1:end-1);end% 从终点开始的open表if (ii1 > 1 && ii1 < length(setOpen1))   %temp在OPEN表的中间,删除tempsetOpen1 = [setOpen1(1:ii1-1); setOpen1(ii1+1:end)];setOpenCosts1 = [setOpenCosts1(1:ii1-1); setOpenCosts1(ii1+1:end)];setOpenHeuristics1 = [setOpenHeuristics1(1:ii1-1); setOpenHeuristics1(ii1+1:end)];elseif (ii1 == 1)setOpen1 = setOpen1(2:end);   %temp是OPEN表的第一个元素,删除tempsetOpenCosts1 = setOpenCosts1(2:end);setOpenHeuristics1 = setOpenHeuristics1(2:end);else     %temp是OPEN表的最后一个元素,删除tempsetOpen1 = setOpen1(1:end-1);setOpenCosts1 = setOpenCosts1(1:end-1);setOpenHeuristics1 = setOpenHeuristics1(1:end-1);endend%% 获得当前的点的邻居
function [posinds,posinds1,cost,cost1,heuristic,heuristic1]=get_neighbors(n,ii,ii1,currentpos_x,currentpos_y,currentpos1_x,currentpos1_y,goalpos_x,goalpos_y,startpos_x,startpos_y)global   setOpenCostsglobal   setOpenCosts1
cost = Inf*ones(4,1); heuristic = Inf*ones(4,1); pos = ones(4,2);  cost1 = Inf*ones(4,1); heuristic1 = Inf*ones(4,1); pos1 = ones(4,2); %  左侧查询newx = currentpos_x ; newy = currentpos_y-1; if newy > 0  %如果没有到边界pos(1,:) = [newx newy];   %获得新的坐标heuristic(1) = abs(goalpos_x-newx) + abs(goalpos_y-newy);    %heuristic(1)为启发函数计算的距离代价% heuristic(1) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2);    %heuristic(1)为启发函数计算的距离代价cost(1) = setOpenCosts(ii) +  1;   %costsofar为之前花费的代价,field(newy,newx)为环境威胁代价,cost(1)为经过此方向点的真实代价endnewx1 = currentpos1_x ; newy1= currentpos1_y-1; if newy1 > 0  %如果没有到边界pos1(1,:) = [newx1 newy1];   %获得新的坐标heuristic1(1) = abs(startpos_x-newx1) + abs(startpos_y-newy1);    %heuristic(1)为启发函数计算的距离代价% heuristic(1) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2);    %heuristic(1)为启发函数计算的距离代价cost1(1) = setOpenCosts1(ii1) +  1;   %costsofar为之前花费的代价,field(newy,newx)为环境威胁代价,cost(1)为经过此方向点的真实代价end%  向右查询newx = currentpos_x; newy = currentpos_y+1;if newy <= npos(2,:) = [newx newy];heuristic(2) = abs(goalpos_x-newx) + abs(goalpos_y-newy);  %heuristic(1)为启发函数计算的距离代价% heuristic(2) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2); cost(2) =setOpenCosts(ii) +  1;endnewx1 = currentpos1_x; newy1 = currentpos1_y+1;if newy1 <= npos1(2,:) = [newx1 newy1];heuristic1(2) = abs(startpos_x-newx1) + abs(startpos_y-newy1);  %heuristic(1)为启发函数计算的距离代价% heuristic(2) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2); cost1(2) =setOpenCosts1(ii1) +  1;end%  向上查询newx = currentpos_x+1; newy = currentpos_y;if newx <= npos(3,:) = [newx newy];heuristic(3) = abs(goalpos_x-newx) + abs(goalpos_y-newy);    %heuristic(1)为启发函数计算的距离代价%  heuristic(3) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2); cost(3) =setOpenCosts(ii) + 1;endnewx1 = currentpos1_x+1; newy1 = currentpos1_y;if newx1 <= npos1(3,:) = [newx1 newy1];heuristic1(3) = abs(startpos_x-newx1) + abs(startpos_y-newy1);    %heuristic(1)为启发函数计算的距离代价%  heuristic(3) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2); cost1(3) =setOpenCosts1(ii1) + 1;end%   向下查询newx = currentpos_x-1; newy = currentpos_y;if newx > 0pos(4,:) = [newx newy];heuristic(4) = abs(goalpos_x-newx) + abs(goalpos_y-newy);    %heuristic(1)为启发函数计算的距离代价%heuristic(4) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2); cost(4) = setOpenCosts(ii) + 1;endnewx1 = currentpos1_x-1; newy1 = currentpos1_y;if newx1 > 0pos1(4,:) = [newx1 newy1];heuristic1(4) = abs(startpos_x-newx1) + abs(startpos_y-newy1);    %heuristic(1)为启发函数计算的距离代价%heuristic(4) = sqrt((goalpos(1)-newx)^2 + (goalpos(2)-newy)^2); cost1(4) = setOpenCosts1(ii1) + 1;end
%     %   左上查询
%          newx = currentpos(1)-1; newy = currentpos(2)-1;
%         if (newy >0 && newx>0)
%            pos1(1,:) = [newx newy];
%            heuristic1(1)=abs(goalpos(1)-newx) + abs(goalpos(2)-newy);    %heuristic(1)为启发函数计算的距离代价
%            cost1(1) = setOpenCosts(ii)  + sqrt(2)*field(newx,newy);
%        end
%   %    右上查询
%      newx = currentpos(1)-1; newy = currentpos(2)+1;
%      if (newy <= n && newx>0)
%         pos1(2,:) = [newx newy];
%         heuristic1(2) = abs(goalpos(1)-newx) + abs(goalpos(2)-newy);    %heuristic(1)为启发函数计算的距离代价
%         cost1(2) = setOpenCosts(ii)  +sqrt(2)*field(newx,newy);
%      end
%  %  左下查询
%      newx = currentpos(1)+1; newy = currentpos(2)-1;
%      if (newy > 0 && newx<=n)
%         pos1(3,:) = [newx newy];
%         heuristic1(3) = abs(goalpos(1)-newx) + abs(goalpos(2)-newy);    %heuristic(1)为启发函数计算的距离代价
%         cost1(3) = setOpenCosts(ii)  + sqrt(2)*field(newx,newy);
%      end
%     %  右下查询
%      newx = currentpos(1)+1; newy = currentpos(2)+1;
%      if (newx <= n && newy<=n)
%         pos1(4,:) = [newx newy];    
%         heuristic1(4) = abs(goalpos(1)-newx) + abs(goalpos(2)-newy);    %heuristic(1)为启发函数计算的距离代价
%         cost1(4) = setOpenCosts(ii)  + sqrt(2)*field(newx,newy);
%      endposinds = sub2ind([n,n],pos(:,1),pos(:,2));posinds1 = sub2ind([n,n],pos1(:,1),pos1(:,2));
end%% 注释:当获取当前点的邻居向8个方向时,估计函数h(n)要采用切比雪夫距离

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/190605.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

RPC之GRPC:什么是GRPC、GRPC的优缺点、GRPC使用场景

简介 gRPC是一个现代的开源高性能远程过程调用(RPC)框架&#xff0c;可以在任何环境中运行。它可以高效地连接数据中心内和跨数据中心的服务&#xff0c;支持负载平衡、跟踪、运行状况检查和身份验证。它也适用于分布式计算的最后一英里&#xff0c;将设备、移动应用程序和浏览…

linux特殊权限_suid_chattr_umask

3.3 特殊权限 如果一个文件很重要&#xff0c;需要依赖特殊权限避免其被删除。 由于特殊权限会拥有一些“特权”&#xff0c;因而用户若无特殊需要&#xff0c;不应该去打开这些权限&#xff0c;避免安全方面出现严重漏洞&#xff0c;甚至摧毁系统。3个权限是对了执行文件或目…

软件使用-stm32入门

这节主要是介绍大家使用两个软件。这两个软件也是比较常用的&#xff0c;里面也有很多有意思的功能&#xff0c;可以给大家介绍一下。 1. FlyMcu 软件 这个软件可以通过串口给 STM32 下载程序&#xff0c;如果你没有 STLINK&#xff0c;就可以用这个软件通过串口下载程序。 …

FPGA串口接收解帧、并逐帧发送有效数据-2

FPGA串口接收解帧、并逐帧发送有效数据 工程实现的功能&#xff1a;FPGA串口接收到串口调试助手发来的数据&#xff0c;将其数据解帧。判断到正确的帧头和帧尾之后&#xff0c;将有效数据存入rx_data中&#xff1b;另一方面发送端将有效数据逐帧发送出去。 参考&#xff1a;正…

差分数组相关知识点以及刷题

差分数组 差分数组是什么&#xff1f; **举例&#xff1a;**对于数组考虑数组 a[1,3,3,5,8]&#xff0c;对其中的相邻元素两两作差&#xff08;右边减左边&#xff09;&#xff0c;得到数组 [2,0,2,3]。然后在开头补上 a[0]&#xff0c;得到差分数组&#xff1a; ​ d[1,2,0…

【电路笔记】-串联和并联电阻

串联和并联电阻 文章目录 串联和并联电阻1、概述2、串联和并联电阻示例13、串联和并联电阻示例2 电阻器可以无限数量的串联和并联组合连接在一起&#xff0c;形成复杂的电阻电路。 1、概述 在之前的教程中&#xff0c;我们学习了如何将各个电阻器连接在一起以形成串联电阻器网…

编程和系统架构设计中性能优化等相关问题及解决方案

在编程和系统架构设计中,性能优化、大并发编程、异步补偿以及分布式事务控制等问题是经常面临的挑战。要优雅地解决这些问题。 常见的技术难题: 编程中常见的技术难题有很多,以下列举了一些常见的技术难题: 1. 性能优化:如何提高程序的执行效率,优化算法和数据结构,减少…

什么是Ros(四) - ros1和ros2的区别

参考&#xff1a;【ros/ros2】ros1和ros2的区别-要点记录_shuaixio的博客-CSDN博客

linux设置权限_setfacl_getfacl

3.2 设置权限ACL&#xff08;access control list&#xff09; 假设&#xff1a;/data所有者与所属组均为root&#xff0c;在不改变所有者的前提下&#xff0c;要求用户tom对该目录有完全访问权限&#xff08;rwx&#xff09;。只能考虑&#xff1a; 方法一&#xff1a;给/dat…

超详细实现【贪吃蛇】(1)

目录 技术要点介绍 &#x1f642;Win32 API &#x1f642;控制台程序 &#x1f387;标题 &#x1f387;大小 在Windows终端上&#xff1a; 在VS上&#xff1a; &#x1f387;坐标 &#x1f642;光标 &#x1f636;‍&#x1f32b;️GetStdHandle &#x1f636;‍&am…

基于STM32 + TIM _定时器的基本机构和工作原理详解

前言 本篇博客主要学习了解定时器的基本结构和工作原理&#xff0c;掌握定时器的驱动程序和设计。本篇博客大部分是自己收集和整理&#xff0c;如有侵权请联系我删除。 本次博客板子使用的是正点原子精英版&#xff0c;芯片是STM32F103ZET6,需要资料可以我拿取。 本博客内容原…

多个模版结构特征提取

HhsearchHitFeaturizer和HmmsearchHitFeaturizer类的get_templates方法返回TemplateSearchResult。TemplateSearchResult含有features&#xff08;TEMPLATE_FEATURES字典类型&#xff09;以及errors&#xff08;列表类型&#xff09; 和 warnings &#xff08;列表类型&#xf…

【PyTorch】(四)损失函数与优化器

文章目录 1. 损失函数2. 优化器 1. 损失函数 2. 优化器

[数据结构]红黑树的定义以及添加原则

红黑树是一种自平衡的二叉查找树&#xff0c;是一种常用的数据结构 1972年出现&#xff0c;在当时被称为平衡二叉B树。后来1978年被修改为如今的“红黑树” 它是一个特殊的二叉查找树&#xff0c;红黑树的每一个节点上都有储存位表示节点的颜色 每一个节点可以是红或者黑&#…

代码生成器——MyBatisX插件

MyBatisX插件 MyBatis-Plus为我们提供了强大的mapper和service模板&#xff0c;能够大大的提高开发效率。 但是在真正开发过程中&#xff0c;MyBatis-Plus并不能为我们解决所有问题&#xff0c;例如一些复杂的SQL&#xff0c;多表联查&#xff0c;我们就需要自己去编写代码和SQ…

修复 Ubuntu 2204 Wi-Fi 热点无法连接问题

修复 Ubuntu 2204 Wi-Fi 热点无法连接问题 Ubuntu 升级到 Ubuntu 22.04 之后&#xff0c; 系统自带的 Wi-Fi 热点功能就不能用了&#xff0c; 共享的热点无法连接&#xff0c; 应该是 wpa_supplicant-2.10 导致的 (https://blog.incompetent.me/2022/07/27/workaround-ubuntu-…

22.Python 操作目录

目录&#xff09; 1. 认识路径相对路径绝对路径 2. 拼接路径3.检测目录4.创建和删除目录5.遍历目录 1. 认识路径 目录也称文件夹&#xff0c;用于分层保护文件&#xff0c;通过目录可以分门别类地存放文件&#xff0c;也可以通过目录快速地找到想要的文件&#xff0c;在Python…

每天一点python——day83

#每天一点Python——83 #python报错原因 bug&#xff1a; 在计算机程序中&#xff0c;bug是指程序中的错误或故障&#xff0c;导致程序不能按照预期执行或产生不正确的结果。 这种错误可能是由编码或设计错误、运行环境不一致、输入数据异常等多种原因导致的。常见的bug类型包括…

密码学实验三

第一题&#xff1a; 寻找满足特定条件的 e&#xff1b; 第一步&#xff1a; 第二步&#xff1a; 由式1.7知&#xff0c;给定e,p,q&#xff0c;就可计算出相应的RSA不动点的数目。因此设计算法步骤如下&#xff1a; 枚举找出所有与φ(n)互素的e。枚举所有满足条件的e&#xff…

oracle 去重

Oracle去重 在Oracle中进行去重的SQL语句有以下几种&#xff1a; 1.使用DISTINCT关键字 使用SELECT DISTINCT列名 FROM 表名来选择唯一的值。例如&#xff1a;SELECT DISTINCT column_name FROM table_name; 2.使用GROUP BY子句 使用GROUP BY子句将重复的值分组&#xff0…