По разделам

 

Решение задачи File 21


Дан файл вещественных чисел. Создать файл целых чисел, содержащий номера всех локальных максимумов исходного файла в порядке возрастания (определение локального максимума дано в задании File19).

Код (Python)

import random

def GenerateNumbers(fname):
    N = random.randint(1,11)
    print("N = ",N)
    L = []
    x = random.randint(1,4)
    L.append(x)
    for i in range(1,N):
        lst_rnd = list(range(1,5))
        lst_rnd.remove(x)
        x = random.choice(lst_rnd)
        L.append(x)    
    print(L)
    try:
        f = open(fname, "w")
        try:
            for x in L:
                line = str(x)+"\n"
                f.write(line)
        finally:
            f.close()
    except IOError:
        print('Write error: ',fname)

def EmptyFile(fname):
    open(fname, 'w').close()
    
def Write2File(fname,value):
    try:
        f = open(fname, "a")
        try:
            s = str(value)+'\n'
            f.write(s)
        finally:
            f.close()
    except IOError:
        print('Write error: ',fname)

f_input = "file21_input.txt"
#GenerateNumbers(f_input)

f_output = "file21_output.txt"
EmptyFile(f_output)

i = 0
flag = False
try:
    with open(f_input,'r') as f_in:
        for line in f_in:
            i += 1
            x = int(line.strip())
            print(x)    
            if i == 1:
                x1 = x
                l_max = x1
                l_max_line = 1
            elif i == 2:
                x2 = x
                if x1 > x2:
                    print("Local maximum:",l_max,"; Max line:",l_max_line)
                    Write2File(f_output,l_max_line)
                else:
                    l_max = x2
                    l_max_line = 2
            elif i == 3:
                x3 = x
                if x3 > x2:
                    l_max = x3
                    l_max_line = 3
                elif x1 < x2 and x2 > x3:
                    l_max = x2
                    print("Local maximum:",l_max,"; Max line:",l_max_line)
                    Write2File(f_output,l_max_line)
            else:
                x1 = x2
                x2 = x3
                x3 = x
                if x3 > x2:
                    l_max = x3
                    l_max_line = i
                elif x1 < x2 and x2 > x3:
                    print("Local maximum:",l_max,"; Max line:",l_max_line)
                    Write2File(f_output,l_max_line)

except IOError:
    print('Open error: ',f_source)
    
if i == 1:
    print("Local maximum:",l_max,"; Max line:",l_max_line)
    Write2File(f_output,l_max_line)
elif i == 2:
    if x1 < x2:
        print("Local maximum:",l_max,"; Max line:",l_max_line)
        Write2File(f_output,l_max_line)
else:
    if x2 < x3:
        print("Local maximum:",l_max,"; Max line:",l_max_line)
        Write2File(f_output,l_max_line)
									

Код (Pascal)

program File21;
var
 S:String;
 F_in: File of Real;
 F_out: File of Integer;
 El2,El1,El:Real;
 i:integer;
begin
  Write('File: ');
  Readln(S);
  Assign(F_in,S);
  Reset(F_in);
  Write('File_out: ');
  Readln(S);
  Assign(F_out,S);
  ReWrite(F_out);
  Read(F_in,El1);
  Read(F_in,El);
  El2:=El1;
  I:=1;
  if (El1>El) then Write(F_out,i);
  while (not eof(F_in)) do
   begin
    El2:=El1;
    El1:=El;
    Read(F_in,El);
    inc(i);
    if (El<El1) and (El1>El2) then Write(F_out,i);
   end;
  if El1<El then Write(F_out,i+1);
  Close(F_in);
end.
									




File. Абрамян
File 1 Просмотров: 4599
File 2 Просмотров: 3881
File 3 Просмотров: 1822
File 4 Просмотров: 2277
File 5 Просмотров: 1763
File 6 Просмотров: 1568
File 7 Просмотров: 1373
File 8 Просмотров: 1833
File 9 Просмотров: 1087
File 10 Просмотров: 1603
File 11 Просмотров: 1112
File 12 Просмотров: 1255
File 13 Просмотров: 1098
File 14 Просмотров: 976
File 15 Просмотров: 883
File 16 Просмотров: 1130
File 17 Просмотров: 1312
File 18 Просмотров: 907
File 19 Просмотров: 777
File 20 Просмотров: 959
File 21 Просмотров: 815
File 22 Просмотров: 978
File 23 Просмотров: 839
File 24 Просмотров: 836
File 25 Просмотров: 894
File 26 Просмотров: 871
File 27 Просмотров: 739
File 28 Просмотров: 992
File 29 Просмотров: 756
File 30 Просмотров: 838
File 31 Просмотров: 740
File 32 Просмотров: 778
File 33 Просмотров: 850
File 34 Просмотров: 857
File 35 Просмотров: 650
File 36 Просмотров: 745
File 37 Просмотров: 629
File 38 Просмотров: 701
File 39 Просмотров: 718
File 40 Просмотров: 630
File 41 Просмотров: 682
File 42 Просмотров: 842
File 43 Просмотров: 625
File 44 Просмотров: 630
File 45 Просмотров: 693
File 46 Просмотров: 604
File 47 Просмотров: 728
File 48 Просмотров: 851
File 49 Просмотров: 744
File 50 Просмотров: 778
File 51 Просмотров: 757
File 52 Просмотров: 772
File 53 Просмотров: 609
File 54 Просмотров: 587
File 55 Просмотров: 663
File 56 Просмотров: 728
File 57 Просмотров: 561
File 58 Просмотров: 708
File 59 Просмотров: 664
File 60 Просмотров: 1167

Комментарии

Чтобы написать комментарии вам нужно войти в систему или зарегистрироваться



Заявка на расчет