Skip to content

Commit 7d2b748

Browse files
committed
Merge branch 'algorithmsforRAs'
2 parents fe0d02d + 5eae125 commit 7d2b748

19 files changed

+1791
-367
lines changed

.gitignore

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1+
# Build/IDE temp files #
2+
#############
13
.project
24
.settings
35
.classpath
4-
5-
# compiled files
66
bin
77
gen/srt
88
build
9+
.RData
10+
11+
# Mobile Tools for Java (J2ME)
12+
.mtj.tmp/
913

14+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
15+
hs_err_pid*
1016

1117
# Big files #
1218
#############
@@ -49,6 +55,8 @@ target
4955
*.gz
5056
*.iso
5157
*.jar
58+
*.war
59+
*.ear
5260
*.rar
5361
*.tar
5462
#*.zip
@@ -63,6 +71,7 @@ bower_components
6371

6472
# OS generated files #
6573
######################
74+
.DS_Store
6675
.DS_Store?
6776
ehthumbs.db
6877
Icon?

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = function(grunt) {
99
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
1010
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
1111
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
12-
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
12+
'* Copyright (c) 2010-<%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
1313
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
1414
// Task configuration.
1515
concat: {
@@ -99,4 +99,4 @@ module.exports = function(grunt) {
9999
grunt.registerTask('docs', ['jsdoc']);
100100
grunt.registerTask('default', ['jshint', 'jasmine_node', 'concat', 'uglify']);
101101

102-
};
102+
};

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2010-2013 cesine, hisakonog
1+
Copyright 2010-2015 cesine, hisakonog, vronvali
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.
@@ -10,4 +10,4 @@ Unless required by applicable law or agreed to in writing, software
1010
distributed under the License is distributed on an "AS IS" BASIS,
1111
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
See the License for the specific language governing permissions and
13-
limitations under the License.
13+
limitations under the License.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ Groovy Syntax highlighting using Eclipse
9090

9191

9292
## License
93-
Copyright (c) 2010-2013 cesine, hisakonog
93+
Copyright (c) 2010-2015 cesine, hisakonog, vronvali
9494
Licensed under the Apache 2.0 license.

bower.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"homepage": "https://github.com/cesine/ToolsForFieldLinguistics",
55
"authors": [
66
"cesine <[email protected]>",
7-
"hisakonog <[email protected]>"
7+
"hisakonog <[email protected]>",
8+
"vronvali <[email protected]>"
89
],
910
"description": "A collection of scripts and recipes for fieldlinguistics",
1011
"main": "dist/tools-for-field-linguistics.min.js",

src/japegrammars/ReadingList.jape

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
Copyright 2011 Gina Cook
3+
Copyright 2011 Gina
44

55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

src/java/BinaryArithmetic.java

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
import java.util.Arrays;
2+
3+
/**
4+
*
5+
* Location https://coderpad.io/WGT7MX76
6+
*
7+
* Example showing how to work with two arrays which need
8+
* to be aligned at their ends (not starts), and where the
9+
* result of the current might affect the next.
10+
*
11+
* Useful for:
12+
* - binary arithmetic ("101" "010" -> "111" OR "101" "011" -> "1000")
13+
* - iterating through arrays of json where the following item might affect the result of the previous (a carry behavior)
14+
*/
15+
public class BinaryArithmetic {
16+
17+
/**
18+
* minimal time is going to be max length of one of the string
19+
* x3 because of
20+
* - initialization and
21+
* - actual computation loop
22+
* - conversion to string
23+
*/
24+
static String addBinaryStrings(String a, String b) throws Exception {
25+
if (a == null) {
26+
a = "0";
27+
}
28+
if (b == null) {
29+
b = "0";
30+
}
31+
int alength = a.length();
32+
int blength = b.length();
33+
34+
int maxLength = Math.max(alength, blength);
35+
if (maxLength == 0) {
36+
return "0";
37+
}
38+
int[] result = new int[maxLength]; // initialize?
39+
40+
System.out.println("Padding inputs to a max length of " + maxLength);
41+
for (int i = 0; i < maxLength - alength; i++) {
42+
a = "0" + a;
43+
}
44+
for (int i = 0; i < maxLength - blength; i++) {
45+
b = "0" + b;
46+
}
47+
System.out.println(" padded a:" + a);
48+
System.out.println(" padded b:" + b);
49+
50+
// Initialize the results
51+
for (int i = 0; i < maxLength; i++) {
52+
result[i] = 0;
53+
}
54+
55+
//keep track of the carry
56+
int carry = 0;
57+
for (int current = maxLength - 1; current >= 0; current--) {
58+
System.out.println("Working on " + current);
59+
char acurrent = a.charAt(current);
60+
char bcurrent = b.charAt(current);
61+
62+
System.out.println("Sum of " + acurrent + " + " + bcurrent + " =");
63+
int sum = addChar(acurrent, bcurrent) + carry;
64+
System.out.println(" = " + sum);
65+
if (sum == 3) {
66+
result[current] = 1;
67+
carry = 1;
68+
System.out.println(" Carrying further " + carry);
69+
} else if (sum == 2) {
70+
result[current] = 0;
71+
carry = 1;
72+
System.out.println(" Carrying " + carry);
73+
} else {
74+
result[current] = sum;
75+
carry = 0;
76+
}
77+
}
78+
79+
String asString = "";
80+
if (carry == 1) {
81+
asString += "1";
82+
}
83+
for (int i = 0; i < maxLength; i++) {
84+
asString += result[i];
85+
}
86+
return asString;
87+
}
88+
89+
static int addChar(char a, char b) throws Exception {
90+
if ((a != '0' && a != '1') || (b != '0' && b != '1')) {
91+
throw new Exception("Invalid input, use 0 or 1");
92+
}
93+
94+
if (a == '0' && b == '0') {
95+
return 0;
96+
} else if (a == '0' && b == '1' || a == '1' && b == '0') {
97+
return 1;
98+
} else if (a == '1' && b == '1') {
99+
return 2;
100+
}
101+
return 0;
102+
}
103+
104+
}

src/java/BinaryArithmeticTest.java

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
public class BinaryArithmeticTest {
2+
3+
public static void itShouldBeAbleToAddBinaryStrings() throws Exception {
4+
String result = BinaryArithmetic.addBinaryStrings("0", "0");
5+
System.out.println(" Added strings 0 and 0 :" + result + ":");
6+
assert result != null;
7+
assert "0".equals(result);
8+
9+
result = BinaryArithmetic.addBinaryStrings("0000", "0");
10+
System.out.println(" should pad the result to the size of the input :" + result + ":");
11+
assert "0000".equals(result);
12+
13+
result = BinaryArithmetic.addBinaryStrings("", "0");
14+
System.out.println(" should pad the result to the size of the input :" + result + ":");
15+
assert "0".equals(result);
16+
17+
result = BinaryArithmetic.addBinaryStrings("", "");
18+
System.out.println(" should pad the result to the size of the input :" + result + ":");
19+
assert "0".equals(result);
20+
21+
result = BinaryArithmetic.addBinaryStrings(null, "");
22+
System.out.println(" should pad the result to the size of the input :" + result + ":");
23+
assert "0".equals(result);
24+
}
25+
26+
public static void itShouldBeAbleToAddBinaryStringsWhichRequireNoCarrying() throws Exception {
27+
String result = BinaryArithmetic.addBinaryStrings("101", "010");
28+
System.out.println(" Added strings 101 and 010 :" + result + ":");
29+
assert "111".equals(result);
30+
}
31+
32+
public static void itShouldBeAbleToAddBinaryStringsWhichRequireCarrying() throws Exception {
33+
String result = BinaryArithmetic.addBinaryStrings("101", "011");
34+
System.out.println(" Added strings 101 and 011 :" + result + ":");
35+
assert "1000".equals(result);
36+
37+
result = BinaryArithmetic.addBinaryStrings("111", "1");
38+
System.out.println(" Added strings 111 and 1 :" + result + ":");
39+
assert "1000".equals(result);
40+
41+
result = BinaryArithmetic.addBinaryStrings("111", "11");
42+
System.out.println(" Added strings 111 and 11 :" + result + ":");
43+
assert "1010".equals(result);
44+
}
45+
46+
public static void itShouldBeAbleToAddChar() throws Exception {
47+
int result = BinaryArithmetic.addChar('0', '0');
48+
System.out.println(" Added chars 0 and 0: " + result);
49+
assert result == 0;
50+
51+
result = BinaryArithmetic.addChar('0', '1');
52+
System.out.println(" Added chars 0 and 1: " + result);
53+
assert result == 1;
54+
55+
result = BinaryArithmetic.addChar('1', '1');
56+
System.out.println(" Added chars 1 and 1: " + result);
57+
assert result == 2;
58+
59+
try {
60+
System.out.println(" Adding chars e and 1: " + result);
61+
result = BinaryArithmetic.addChar('d', '1');
62+
assert result == 0;
63+
assert false;
64+
} catch (Exception e) {
65+
System.out.println(" should throw an exception ");
66+
assert true;
67+
}
68+
}
69+
70+
public static void main(String[] args) {
71+
System.out.println("\nRunning specs for BinaryArithmetic: ");
72+
73+
try {
74+
itShouldBeAbleToAddBinaryStrings();
75+
itShouldBeAbleToAddChar();
76+
itShouldBeAbleToAddBinaryStringsWhichRequireNoCarrying();
77+
itShouldBeAbleToAddBinaryStringsWhichRequireCarrying();
78+
} catch (Exception e) {
79+
System.out.println("Unexpected error in itShouldBeAbleToAddChar." + e);
80+
}
81+
82+
System.out.println("\nDone \n\n");
83+
}
84+
85+
}

0 commit comments

Comments
 (0)