标签: sql algorithm object plsql
我已经在表中存储了一些sql对象,这些对象实现了map函数以允许它们进行比较。我想知道我是否可以将它们的排序列表传递给二进制搜索函数,该函数可用于实现map()函数的任何内容?
像
function binarySearch(mappables typ_mappables_t) return integer is begin --binary search using map() for comparison return found_index; end;