По разделам

 

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


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

Код (Python)

import random

def GenerateNumbers(fname):
    N = random.randint(1,15)
    print("N = ",N)
    L = []
    x = random.randrange(1,10)
    L.append(x)
    for i in range(1,N):
        lst_rnd = list(range(1,10))
        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 = "file22_input.txt"
GenerateNumbers(f_input)

f_output = "file22_output.txt"
EmptyFile(f_output)

i = 0
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
                print("Local extremum:",x1,"; Extremum line:",1)
                Write2File(f_output,1)
            elif i == 2:
                x2 = x
            elif i == 3:
                x3 = x
                if (x1 < x2 and x2 > x3) or (x1 > x2 and x2 < x3):
                    print("Local extremum:",x2,"; Extremum line:",i-1)
                    Write2File(f_output,i)
            else:
                x1 = x2
                x2 = x3
                x3 = x
                #print(x1,x2,x3)
                if (x1 < x2 and x2 > x3) or (x1 > x2 and x2 < x3):
                    print("Local extremum:",x2,"; Extremum line:",i-1)
                    Write2File(f_output,i)

except IOError:
    print('Open error: ',f_source)
    
if i == 2:
    print("Local extremum:",x2,"; Extremum line:",2)
    Write2File(f_output,2)
elif i >= 3:
    print("Local extremum:",x3,"; Extremum line:",i)
    Write2File(f_output,i)
									

Код (Pascal)

program File22;
var
 S:String;
 F_in: File of Real;
 F_out,F_out_temp: File of Integer;
 El2,El1,El:Real;
 temp,i,len: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);
  Assign(F_out_temp,'~'+S);
  ReWrite(F_out_temp);
  Read(F_in,El1);
  Read(F_in,El);
  El2:=El1;
  I:=1;
  if (El1<>El) then Write(F_out_temp,i);
  while (not eof(F_in)) do
   begin
    El2:=El1;
    El1:=El;
    Read(F_in,El);
    inc(i);
    if ((El<El1) and (El1>El2)) or ((El>El1) and (El1<El2)) then Write(F_out_temp,i);
   end;
  inc(i);
  if El1<>El then Write(F_out_temp,i);
  Close(F_in);
  Close(F_out_temp);
  Reset(F_out_temp);
  len:=1;
  while (not eof(F_out_temp)) do
   begin
    Read(F_out_temp,temp);
    inc(len);
   end;
  while (len>1) do
   begin
    Close(F_out_temp);
    Reset(F_out_temp);
    i:=1;
    while (not eof(F_out_temp)) and (i<>len) do
     begin
      Read(F_out_temp,temp);
      inc(i);
     end;
    Write(F_out,temp);
    Writeln(temp);
    dec(len);
   end;
  Close(F_out_temp);
&nbsp; erase(F_out_temp);
  Close(F_out);
end.
									




File. Абрамян
File 1 Просмотров: 4642
File 2 Просмотров: 3922
File 3 Просмотров: 1867
File 4 Просмотров: 2379
File 5 Просмотров: 1791
File 6 Просмотров: 1596
File 7 Просмотров: 1405
File 8 Просмотров: 1862
File 9 Просмотров: 1114
File 10 Просмотров: 1633
File 11 Просмотров: 1144
File 12 Просмотров: 1291
File 13 Просмотров: 1120
File 14 Просмотров: 1008
File 15 Просмотров: 913
File 16 Просмотров: 1154
File 17 Просмотров: 1339
File 18 Просмотров: 937
File 19 Просмотров: 811
File 20 Просмотров: 990
File 21 Просмотров: 842
File 22 Просмотров: 1011
File 23 Просмотров: 871
File 24 Просмотров: 868
File 25 Просмотров: 923
File 26 Просмотров: 900
File 27 Просмотров: 763
File 28 Просмотров: 1018
File 29 Просмотров: 786
File 30 Просмотров: 865
File 31 Просмотров: 769
File 32 Просмотров: 805
File 33 Просмотров: 872
File 34 Просмотров: 880
File 35 Просмотров: 673
File 36 Просмотров: 768
File 37 Просмотров: 651
File 38 Просмотров: 732
File 39 Просмотров: 747
File 40 Просмотров: 654
File 41 Просмотров: 704
File 42 Просмотров: 870
File 43 Просмотров: 649
File 44 Просмотров: 659
File 45 Просмотров: 716
File 46 Просмотров: 628
File 47 Просмотров: 758
File 48 Просмотров: 878
File 49 Просмотров: 769
File 50 Просмотров: 800
File 51 Просмотров: 782
File 52 Просмотров: 805
File 53 Просмотров: 637
File 54 Просмотров: 616
File 55 Просмотров: 689
File 56 Просмотров: 754
File 57 Просмотров: 589
File 58 Просмотров: 736
File 59 Просмотров: 689
File 60 Просмотров: 1192

Комментарии

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



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