Jump to content

Output MultiD array with an ArrayUnique type function


Champak
 Share

Go to solution Solved by Gianni,

Recommended Posts

Define what is considered unique.

You could do an outer loop, that grabs the current record, and then an inner loop that re-loops through the array, to see if any dupes (logically skip the current outer loop value durring the inner loop)...if dupe is found, move all the records up, and re-dim.

I'd suggest moving from the ubound of the array to 0, on the outer loop.

Try it out, post some code.  Post your data.  Post something.

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

Feed _ArrayUnique the array one column at a time. Then recombine when you're done.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

That would work only if the uniquness is on columns, where there is no association of the values of rows.

I don't see why you would have a 2d array, at that point.

example:

Local $aArray[6][2] = [[1, "A"],[2, "B"],[3, "C"],[4, "D"],[5, "E"],[6, "E"]]
_ArrayDisplay($aArray, "$aArray")
$aNewArray1 = _ArrayUnique($aArray, 1, 0, 1) ;Using Default Parameters, with Case-Sensitivity
$aNewArray2 = _ArrayUnique($aArray, 2, 0, 1) ;Using Default Parameters, with Case-Sensitivity

If UBound($aNewArray1)>=UBound($aNewArray2) Then
    Local $combine[UBound($aNewArray1)][2]
Else
    Local $combine[UBound($aNewArray2)][2]
EndIf

For $i = 0 To UBound($aNewArray1) - 1
    $combine[$i][0]=$aNewArray1[$i]
    If $i < UBound($aNewArray2) Then
        $combine[$i][1]=$aNewArray2[$i]
    EndIf
Next
_ArrayDisplay($combine)

even though all rows are unique, relative to the other rows, you get this:

[0]|6|5
[1]|1|A
[2]|2|B
[3]|3|C
[4]|4|D
[5]|5|E
[6]|6|
 

The OP needs to give MUCH more information.

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

If I have an array that is [10][5] for example, and the sorting column might be the third column, and in that column there are four elements that are duplicates, the resulting array should spit out [7][5]. All other rows with the duplicate elements would be gone. I don't know how to explain it any better.

Link to comment
Share on other sites

 Element 3 and 5 are the same as 2 in column 2, so row 3 and 5 are removed.

#include <Array.au3>


Local $avArray1[6][4] = [ _
        ["String0", "SubString0", "2String0", "2SubString0"], _
        ["String1", "SubString1=====", "2String0", "2SubString0"], _
        ["String2", "SubString1=====", "2String0", "2SubString0"], _
        ["String3", "SubString3", "2String0", "2SubString0"], _
        ["String4", "SubString1=====", "2String0", "2SubString0"], _
        ["String5", "SubString5", "2String0", "2SubString0"]]

_ArrayDisplay($avArray1)

Local $avArray2[4][4] = [ _
        ["String0", "SubString0", "2String0", "2SubString0"], _
        ["String1", "SubString1=====", "2String0", "2SubString0"], _
        ["String3", "SubString3", "2String0", "2SubString0"], _
        ["String5", "SubString5", "2String0", "2SubString0"]]

_ArrayDisplay($avArray2)
Link to comment
Share on other sites

This will work:

#include <array.au3>
Local $aTemp[6][4] = [ _
        ["String0", "SubString0", "2String0", "2SubString0"], _
        ["String1", "SubString1=====", "2String0", "2SubString0"], _
        ["String2", "SubString1=====", "2String0", "2SubString0"], _
        ["String3", "SubString3", "2String0", "2SubString0"], _
        ["String4", "SubString1=====", "2String0", "2SubString0"], _
        ["String5", "SubString5", "2String0", "2SubString0"]]

$aUnique_2D = _ArrayUnique_2D($aTemp,1)
_ArrayDisplay($aUnique_2D)

Func _ArrayUnique_2D($aArray, $iColumn)
    
    ; Create array of survivors (unique)
    Local $aTemp[UBound($aArray)]
    For $i = 0 To UBound($aTemp)-1
        $aTemp[$i] = $i
    Next
    
    ; Remove dupes from survivng array
    For $i = 0 To UBound($aArray)-1
        $bFound = False
        For $j = UBound($aArray)-1 To 0 Step -1
            If $i = $j Or $aTemp[$j]="" Then ContinueLoop
            If $aArray[$i][$iColumn]=$aArray[$j][$iColumn] Then
                $aTemp[$j] = ""
                $aArray[$j][$iColumn] = "[ToBeDeleted]"
            EndIf
        Next
    Next

    ; Cleanup to drive survivors loop
    For $i = UBound($aTemp)-1 To 0 Step -1
        If String($aTemp[$i])="" Then
            _ArrayDelete($aTemp, $i)
        EndIf
    Next

    ; Move survivors to surviving rows
    For $i = 0 To UBound($aTemp) - 1
        If $i = $aTemp[$i] Then ContinueLoop ; no movement required, skip
        For $j = 0 To UBound($aArray,2)-1
            $aArray[$i][$j] = $aArray[$aTemp[$i]][$j]
        Next
    Next
    ReDim $aArray[UBound($aTemp)][UBound($aArray,2)]

    Return $aArray
EndFunc

output:

[0]|String0|SubString0|2String0|2SubString0
[1]|String1|SubString1=====|2String0|2SubString0
[2]|String3|SubString3|2String0|2SubString0
[3]|String5|SubString5|2String0|2SubString0
 

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

  • Solution

another (shorter) way:

also included an example with an array of towns grabbed from internet:
in input array column 7 contains  duplicate rows (there are duplicate region names)
in output array only one region per row (there are no duplicates in column 7)

#include <IE.au3>
#include <Array.au3>

Local $avArray1[6][4] = [ _
        ["String0", "SubString0", "2String0", "2SubString0"], _
        ["String1", "SubString1=====", "2String0", "2SubString0"], _
        ["String2", "SubString1=====", "2String0", "2SubString0"], _
        ["String3", "SubString3", "2String0", "2SubString0"], _
        ["String4", "SubString1=====", "2String0", "2SubString0"], _
        ["String5", "SubString5", "2String0", "2SubString0"]]

_ArrayDisplay($avArray1)
$avArray2 = _ArrayUnique_2D($avArray1, 2) ; filter on column 2 (1 based)
_ArrayDisplay($avArray2)

; grab a table of italy cities from web --------------------------------------
Local $oIE = _IECreate("http://en.wikipedia.org/wiki/List_of_cities_in_Italy")
Do
    Local $oTable = _IETableGetCollection($oIE, 0)
Until IsObj($oTable)
Local $aTableData = _IETableWriteToArray($oTable, 1)
_IEQuit($oIE)
_ArrayDelete($aTableData, 0) ; remove first row with column titles
; ----------------------------------------------------------------------------

_ArrayDisplay($aTableData, "List of some italian towns. Column 6 contains duplicates")
$aTableData2 = _ArrayUnique_2D($aTableData, 7) ; filter on column 7 (1 based)
_ArrayDisplay($aTableData2, "region are unique and not duplicate in column 7")


Func _ArrayUnique_2D($aTableData, $column)
    $Uniques = _ArrayUnique($aTableData, $column) ; unique elements from column $column
    ; _ArrayDisplay($Uniques,"only unique elements from specified column")
    ; create a new array with room for only unique rows
    Local $aTableData2[$Uniques[0]][UBound($aTableData, 2)] ; create a new array for output

    For $i = 1 To $Uniques[0] ; loop all rows of unique elements
        ; search first occurence of element $i in main table ; $ndx is row where is found
        $ndx = _ArraySearch($aTableData, $Uniques[$i], 0, 0, 0, 0, 1, $column - 1)

        ; copy data from all columns from source array to new array
        For $x = 0 To UBound($aTableData2, 2) - 1 ; loop all columns of row $ndx
            $aTableData2[$i - 1][$x] = $aTableData[$ndx][$x] ; copy data of row $ndx from main to new array
        Next
    Next
    Return $aTableData2
EndFunc   ;==>_ArrayUnique_2D
Edited by PincoPanco

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

Link to comment
Share on other sites

Here is another slightly smaller way.

_ArrayUnique function is not necessary when the _ArraySearch function is used.

#include <Array.au3>

Local $avArray1[6][4] = [ _
        ["String0", "SubString0", "2String0", "2SubString0"], _
        ["String1", "SubString1=====", "2String0", "2SubString0"], _
        ["String2", "SubString1=====", "2String0", "2SubString0"], _
        ["String3", "SubString3", "2String0", "2SubString0"], _
        ["String4", "SubString1=====", "2String0", "2SubString0"], _
        ["String5", "SubString5", "2String0", "2SubString0"]]

_ArrayDisplay($avArray1,"Original Array")

$aUnique_2D = _ArrayUnique_2D($avArray1, 1)
_ArrayDisplay($aUnique_2D,"Unique 2D Array")


; First column = 0, default.
Func _ArrayUnique_2D($aTableData, $column = 0)
    Local $iCount = 0
    Local $aTableData2[UBound($aTableData, 1)][UBound($aTableData, 2)] ; create a new array for output

    For $i = 0 To UBound($aTableData) - 1
        $ndx = _ArraySearch($aTableData2, $aTableData[$i][$column], 0, 0, 0, 0, 1, $column) ; Search new array
        If $ndx = -1 Then  ; If element does not exist, then, add new row to new array.
            For $x = 0 To UBound($aTableData2, 2) - 1 ; loop all columns of row $ndx
                $aTableData2[$iCount][$x] = $aTableData[$i][$x] ; copy data of row $ndx from old to new array
            Next
            $iCount += 1
        EndIf
    Next
    ReDim $aTableData2[$iCount][UBound($aTableData2, 2)]
    Return $aTableData2
EndFunc   ;==>_ArrayUnique_2D
Link to comment
Share on other sites

 

Here is another slightly smaller way.

_ArrayUnique function is not necessary when the _ArraySearch function is used.

 

nice, anyway I do not know if this is an improvement (especially on long arrays)

It seems that more steps and a longer loop are required

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

Link to comment
Share on other sites

Defining how a multidimensional unique array function should behave seems quite complicated. With a 2D array it's not so complicated - you simply eliminate rows or columns. Personally I would only consider a row to be unique if all subitems were also unique. This stricter definition would, at least, be easier to scale up to include more dimensions.

Edited by czardas
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...