Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

7
LINES

< > BotCompany Repo | #1035666 // byteHistogramArray - histogram of byte array as int[256]

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (37L/1K).

1  
static int[] byteHistogramArray(byte[] data) {
2  
  var histogram = new int[256];
3  
  if (data != null)
4  
    for (b : data)
5  
      histogram[b & 0xFF]++;
6  
  ret histogram;
7  
}

Author comment

Began life as a copy of #1008499

download  show line numbers  debug dex  old transpilations   

Travelled to 2 computer(s): elmgxqgtpvxh, mqqgnosmbjvj

No comments. add comment

Snippet ID: #1035666
Snippet name: byteHistogramArray - histogram of byte array as int[256]
Eternal ID of this version: #1035666/3
Text MD5: 9e6e8e7496cd7594492de7601a13fbb9
Transpilation MD5: d12bf9baed4fd5f3941be94b17db1491
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-07-01 05:59:44
Source code size: 171 bytes / 7 lines
Pitched / IR pitched: No / No
Views / Downloads: 66 / 90
Version history: 2 change(s)
Referenced in: [show references]