-
Notifications
You must be signed in to change notification settings - Fork 0
/
YSIntStringDev.swift
494 lines (463 loc) · 18.5 KB
/
YSIntStringDev.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
//
// YSIntStringDev.swift
// YSIntString
//
// Created by 刘云玉树 on 2019/9/1.
// Copyright © 2019 刘云玉树. All rights reserved.
//
// YSIntStringDev只支持64位。
import Foundation
extension String {
/// 计算属性,检查字符串是否符合YSIntString标准,true:符合;false:不符合。该计算属性由YSIntString添加。
var isIntString: Bool {
if (self.count > 0) {
if (self.hasPrefix("0")) {
return self.count == 1
}else if (self.hasPrefix("-") && self.count > 1) {
var a = String(self[self.index(self.startIndex, offsetBy: 1)..<self.index(self.startIndex, offsetBy: 2)])
if (a != "0") {
for i in 1..<self.count {
a = String(self[self.index(self.startIndex, offsetBy: i)..<self.index(self.startIndex, offsetBy: i + 1)])
if (Int(a) == nil) {
return false
}
}
}else{
return false
}
}else{
for i in 1..<self.count {
let a = String(self[self.index(self.startIndex, offsetBy: i)..<self.index(self.startIndex, offsetBy: i + 1)])
if (Int(a) == nil) {
return false
}
}
}
}else{
return false
}
return true
}
}
enum YSIntStringError: Error {
case dividedByZero
}
/// 开发版本的YSIntString
struct YSIntStringDev: Comparable {
static func > (lhs: YSIntStringDev, rhs: YSIntStringDev) -> Bool {
let ln = lhs.negative, rn = rhs.negative
//符号快速判断
if !ln && rn {
return true
}else if ln && !rn {
return false
}
//同符号判断
let lc = lhs._value.count, rc = rhs._value.count
if lc == rc {
for i in (0..<lc).reversed() {
if lhs._value[i] > rhs._value[i] {
return ln ? false : true
}else if lhs._value[i] < rhs._value[i] {
return ln ? true : false
}
}
return false
}else if lc > rc {
return ln ? false : true
}else{
return ln ? true : false
}
}
static func >= (lhs: YSIntStringDev, rhs: YSIntStringDev) -> Bool {
let ln = lhs.negative, rn = rhs.negative
//符号快速判断
if !ln && rn {
return true
}else if ln && !rn {
return false
}
//同符号判断
let lc = lhs._value.count, rc = rhs._value.count
if lc == rc {
for i in (0..<lc).reversed() {
if lhs._value[i] > rhs._value[i] {
return ln ? false : true
}else if lhs._value[i] < rhs._value[i] {
return ln ? true : false
}
}
return true
}else if lc > rc {
return ln ? false : true
}else{
return ln ? true : false
}
}
static func < (lhs: YSIntStringDev, rhs: YSIntStringDev) -> Bool {
let ln = lhs.negative, rn = rhs.negative
//符号快速判断
if !ln && rn {
return false
}else if ln && !rn {
return true
}
//同符号判断
let lc = lhs._value.count, rc = rhs._value.count
if lc == rc {
for i in (0..<lc).reversed() {
if lhs._value[i] > rhs._value[i] {
return ln ? true : false
}else if lhs._value[i] < rhs._value[i] {
return ln ? false : true
}
}
return false
}else if lc > rc {
return ln ? true : false
}else{
return ln ? false : true
}
}
static func <= (lhs: YSIntStringDev, rhs: YSIntStringDev) -> Bool {
let ln = lhs.negative, rn = rhs.negative
//符号快速判断
if !ln && rn {
return false
}else if ln && !rn {
return true
}
//同符号判断
let lc = lhs._value.count, rc = rhs._value.count
if lc == rc {
for i in (0..<lc).reversed() {
if lhs._value[i] > rhs._value[i] {
return ln ? true : false
}else if lhs._value[i] < rhs._value[i] {
return ln ? false : true
}
}
return true
}else if lc > rc {
return ln ? true : false
}else{
return ln ? false : true
}
}
static func == (lhs: YSIntStringDev, rhs: YSIntStringDev) -> Bool {
if lhs.negative == rhs.negative && lhs._value == rhs._value {
return true
}else{
return false
}
}
static func + (lhs: YSIntStringDev, rhs: YSIntStringDev) -> YSIntStringDev {
return lhs.plus(rhs)
}
static func - (lhs: YSIntStringDev, rhs: YSIntStringDev) -> YSIntStringDev {
return lhs.minus(rhs)
}
static prefix func - (rhs: YSIntStringDev) -> YSIntStringDev {
var newIntString = YSIntStringDev()
newIntString._value = rhs._value
newIntString.negative = rhs._value == [0] ? false : !rhs.negative
return newIntString
}
static func * (lhs: YSIntStringDev, rhs: YSIntStringDev) -> YSIntStringDev {
return lhs.multiply(rhs)
}
static func / (lhs: YSIntStringDev, rhs: YSIntStringDev) throws -> (quotient : YSIntStringDev,remainder : YSIntStringDev) {
return try lhs.dividedBy(rhs)
}
/**
返回给定YSIntString的绝对值对象。
- Parameter intString: 一个YSIntString对象。
- Returns: 一个YSIntString对象,其值为给定参数值的绝对值。
*/
static func abs(_ intString: YSIntStringDev) -> YSIntStringDev {
var newIntString = YSIntStringDev()
newIntString._value = intString._value
newIntString.negative = false
return newIntString
}
/// 储存YSIntString值的数组,仅内部访问,若需要获取值请使用`value`
private var _value = [Int]()
/// 判断YSIntString的正负,true:负;false:正
private(set) var negative = Bool()
/// 获取/设置YSIntString的值
var value: String {
get {
var tempValue = "";
for (index, num) in _value.enumerated() {
tempValue = String(format: index == _value.count - 1 ? "%d" : "%09d", num) + tempValue
}
tempValue = (negative ? "-" : "") + tempValue
return tempValue
}
set(intString) {
if intString.isIntString {
var tempIntString = intString
if tempIntString.hasPrefix("-") {
negative = true
let characterSet = CharacterSet(charactersIn: "-")
tempIntString = tempIntString.trimmingCharacters(in: characterSet)
}else{
negative = false
}
//把数字字符串转化为数组
let count = Int(ceil(Double(tempIntString.count) / 9.0))
_value = [Int](repeating: 0, count: count)
for i in 0..<count {
if tempIntString.count > 9 {
//获取最后9个字符并将其截去
_value[i] = Int(tempIntString.suffix(from: tempIntString.index(tempIntString.endIndex, offsetBy: -9))) ?? 0
tempIntString = String(tempIntString[tempIntString.startIndex...tempIntString.index(tempIntString.endIndex, offsetBy: -10)])
}else{
_value[i] = Int(tempIntString) ?? 0
}
}
}else{
_value = [0]
negative = false
print("YSIntString在设置value时遇到了错误格式的字符串,传入参数:\"\(intString)\",默认返回0。")
}
}
}
/**
初始化一个YSIntString对象。
- Parameter intString: 可选,一个数字字符串,负数必须以“-”开头,正数前不需要添加任何符号,不提供则默认为0。
- Returns: 一个YSIntString对象。
如果初始化参数不给出或者不合规,则对象值默认为0。
*/
init(_ intString: String = "0") {
if intString.isIntString {
var tempIntString = intString
if tempIntString.hasPrefix("-") {
negative = true
let characterSet = CharacterSet(charactersIn: "-")
tempIntString = tempIntString.trimmingCharacters(in: characterSet)
}else{
negative = false
}
//把数字字符串转化为数组
let count = Int(ceil(Double(tempIntString.count) / 9.0))
_value = [Int](repeating: 0, count: count)
for i in 0..<count {
if tempIntString.count > 9 {
//获取最后9个字符并将其截去
_value[i] = Int(tempIntString.suffix(from: tempIntString.index(tempIntString.endIndex, offsetBy: -9))) ?? 0
tempIntString = String(tempIntString[tempIntString.startIndex...tempIntString.index(tempIntString.endIndex, offsetBy: -10)])
}else{
_value[i] = Int(tempIntString) ?? 0
}
}
}else{
_value = [0]
negative = false
print("YSIntString在初始化时遇到了错误格式的字符串,传入参数:\"\(intString)\",默认返回0。")
}
}
/// 获取YSIntString的绝对值
var abs: YSIntStringDev {
var newIntString = YSIntStringDev()
newIntString._value = self._value
newIntString.negative = false
return newIntString
}
/**
将自身与给定YSIntString相加。
- Parameter intString: 一个YSIntString对象,作为加数。
- Returns: 一个YSIntString对象,其值为两者之和。
*/
func plus(_ intString: YSIntStringDev) -> YSIntStringDev {
var newIntString = YSIntStringDev()
if !self.negative && !intString.negative {
//正数加正数
newIntString.negative = false;
//按照没有进位进行预期
let expectCount = max(self._value.count, intString._value.count)
newIntString._value = [Int](repeating: 0, count: expectCount)
//执行加法操作
for i in 0..<expectCount {
newIntString._value[i] = (i < self._value.count ? self._value[i] : 0) + (i < intString._value.count ? intString._value[i] : 0)
}
//检查进位
for i in 0..<expectCount {
if newIntString._value[i] >= 1000000000 {
newIntString._value[i] -= 1000000000
if i < expectCount - 1 {
newIntString._value[i + 1] += 1
}else{
newIntString._value.append(1)
}
}
}
}else if self.negative && intString.negative {
//负数加负数
newIntString.negative = true;
//按照没有进位进行预期
let expectCount = max(self._value.count, intString._value.count)
newIntString._value = [Int](repeating: 0, count: expectCount)
//执行加法操作
for i in 0..<expectCount {
newIntString._value[i] = (i < self._value.count ? self._value[i] : 0) + (i < intString._value.count ? intString._value[i] : 0)
//检查进位
if newIntString._value[i] >= 1000000000 {
newIntString._value[i] -= 1000000000
if i < expectCount - 1 {
newIntString._value[i + 1] += 1
}else{
newIntString._value.append(1)
}
}
}
}else{
//正数加负数或负数加正数
let sa = YSIntStringDev.abs(self)
let ia = YSIntStringDev.abs(intString)
if sa > ia {
newIntString.negative = self.negative
let expectCount = self._value.count
newIntString._value = [Int](repeating: 0, count: expectCount)
for i in 0..<expectCount {
newIntString._value[i] += self._value[i] - (i < intString._value.count ? intString._value[i] : 0)
//检查借位
if newIntString._value[i] < 0 && i < expectCount - 1 {
newIntString._value[i] += 1000000000
newIntString._value[i + 1] -= 1
}
}
//检查前导0
for i in (1..<expectCount).reversed() {
if newIntString._value[i] == 0 {
newIntString._value.removeLast()
}else{
break
}
}
}else if sa < ia {
newIntString.negative = intString.negative
let expectCount = intString._value.count
newIntString._value = [Int](repeating: 0, count: expectCount)
for i in 0..<expectCount {
newIntString._value[i] += intString._value[i] - (i < self._value.count ? self._value[i] : 0)
//检查借位
if newIntString._value[i] < 0 && i < expectCount - 1 {
newIntString._value[i] += 1000000000
newIntString._value[i + 1] -= 1
}
}
//检查前导0
for i in (1..<expectCount).reversed() {
if newIntString._value[i] == 0 {
newIntString._value.removeLast()
}else{
break
}
}
}
//当正负数绝对值相等时,直接返回0,故此处省略else
}
return newIntString
}
/**
将自身与给定YSIntString相减。
- Parameter intString: 一个YSIntString对象,作为减数。
- Returns: 一个YSIntString对象,其值为两者之差。
*/
func minus(_ intString: YSIntStringDev) -> YSIntStringDev {
return self + -intString
}
/**
将自身与给定YSIntString相乘。
- Parameter intString: 一个YSIntString对象,作为乘数。
- Returns: 一个YSIntString对象,其值为两者之积。
*/
func multiply(_ intString: YSIntStringDev) -> YSIntStringDev {
var newIntString = YSIntStringDev()
if self.value == "0" || intString.value == "0" { return newIntString }
newIntString.negative = self.negative != intString.negative
let expectCount = self._value.count + intString._value.count
newIntString._value = [Int](repeating: 0, count: expectCount)
for i in 0..<self._value.count {
for j in 0..<intString._value.count {
newIntString._value[i + j] += self._value[i] * intString._value[j]
newIntString._value[i + j + 1] += newIntString._value[i + j] / 1000000000
newIntString._value[i + j] %= 1000000000
}
}
//检查前导0
for i in (1..<expectCount).reversed() {
if newIntString._value[i] == 0 {
newIntString._value.removeLast()
}else{
break
}
}
return newIntString
}
/**
将自身与给定YSIntString相除。
- Parameter intString: 一个YSIntString对象,作为除数。
- Returns: 一个元组,.quotient为商,.remainder为余数。
*/
func dividedBy(_ intString: YSIntStringDev) throws -> (quotient : YSIntStringDev,remainder : YSIntStringDev) {
if intString.value == "0" {
throw YSIntStringError.dividedByZero
}
if self.value == "0" {
return (YSIntStringDev("0"), YSIntStringDev("0"))
}
var quotient = YSIntStringDev()
var remainder = YSIntStringDev()
var lhsIntString = self
var rhsIntString = intString
if lhsIntString.abs < intString.abs {
remainder.negative = lhsIntString.negative
remainder._value = lhsIntString._value
return (quotient, remainder)
}
quotient.negative = lhsIntString.negative != intString.negative
remainder.negative = lhsIntString.negative
lhsIntString.negative = false
rhsIntString.negative = false
let compensation = lhsIntString._value.count - rhsIntString._value.count
quotient._value = [Int](repeating: 0, count: compensation + 1)
rhsIntString._value.insert(contentsOf: [Int](repeating: 0, count: compensation), at: 0)
var itemRemainder = 0
for i in 0...compensation {
if lhsIntString._value.count < rhsIntString._value.count {
rhsIntString._value.removeFirst()
continue
}
var itemQuotient = 0
itemQuotient = (lhsIntString._value[rhsIntString._value.count - 1] + itemRemainder) / rhsIntString._value[rhsIntString._value.count - 1]
while itemQuotient > 0 {
if YSIntStringDev(String(itemQuotient)) * rhsIntString > lhsIntString {
itemQuotient -= 1
}else{
break
}
}
itemQuotient = itemQuotient < 0 ? 0 : itemQuotient
lhsIntString = lhsIntString - YSIntStringDev(String(itemQuotient)) * rhsIntString
if (lhsIntString >= rhsIntString) {
lhsIntString = lhsIntString - rhsIntString
itemQuotient += 1
}
itemRemainder = (lhsIntString._value.last ?? 0) * 1000000000
rhsIntString._value.removeFirst()
quotient._value[compensation - i] = itemQuotient
}
remainder._value = lhsIntString._value
//检查前导0
for i in (1...compensation).reversed() {
if quotient._value[i] == 0 {
quotient._value.removeLast()
}else{
break
}
}
return (quotient, remainder)
}
}