Algoritmos e Complexidade

Licenciatura em Engenharia Informática

Search: \.*

Education/AeC Web Changed Changed by
Avaliacao 18 Sep 2008 - 13:43 - NEW JorgeSousaPinto

Método de Avaliação

Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini-projecto opcional, a entregar e defender na semana de 5 a 9 de Janeiro:

  • NF = .1 ∗ Pratica + .3 ∗ Projecto + .6 ∗ Teorica
  • NF = .1 ∗ Pratica + .9 ∗ Teorica , sendo neste caso NF ≤ 14

A nota teórica será obtida através de teste ou exame e deverá sempre ser superior ou igual a 8.5 valores.

Avisos 28 Sep 2009 - 14:32 - r14 JorgeSousaPinto
28 de Setembro Notas do exame de época especial disponíveis nesta página.

14 de Setembro Exame disponível aqui.

25 de Fevereiro Notas do exame disponíveis nesta página.

4 de Fevereiro Resolução sucinta do teste disponível aqui .

3 de Fevereiro Notas do teste disponíveis nesta página.

20 de Janeiro Teste (13 de Janeiro) disponível aqui.

29 de Dezembro Sessões de dúvidas: uma primeira sessão terá lugar na 5a.fa. 8 de Janeiro, às 16:00 no anfiteatro DI-A2.

17 de Dezembro Encontra-se no piso -2 do DI uma folha para marcação das entregas dos trabalhos práticos da disciplina, que terão lugar nos dias 5, 6, e 7 de Janeiro.

12 de Novembro Disponibilizadas hoje duas colecções de exercícios de exame.

21 de Outubro Disponível o enunciado do mini-projecto. As questões sobre o mesmo que forem colocadas por email à equipa docente serão disponibilizadas numa FAQ.

20 de Outubro Actualizados os slides disponíveis nesta página (todo o primeiro capítulo disponível).

17 Setembro Tiveram hoje início as aulas teóricas. As aulas TP, e respectiva marcação de turnos, iniciar-se-ão na próxima semana.

Bibliografia 17 Sep 2008 - 13:45 - NEW JorgeSousaPinto

Bibliografia

  1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. Introduction to Algorithms, Second Edition. The MIT Press and McGraw-Hill Book Company, 2001.
  2. Donald E. Knuth. The Art of Computer Programming
    • Volume I: Fundamental Algorithms, 3rd Edition. Addison-Wesley, 1997.
    • Volume II: Seminumerical Algorithms, 3rd Edition. Addison-Wesley, 1997.
    • Volume III: Sorting and Searching. 2nd edition Addison-Wesley, 1998.
  3. Robert L. Kruse, Bruce P. Leung, and Clovis L. Tondo. Data Structures and Program Design in C. Prentice Hall, 1991.
Equipa 17 Sep 2008 - 14:04 - NEW JorgeSousaPinto

Equipa Docente

FaqProjecto 25 Oct 2008 - 11:06 - NEW JorgeSousaPinto

Mini-projecto Algoritmos e Complexidade 2008-09

Perguntas Frequentes

MaterialApoio 17 Dec 2008 - 22:52 - r6 JorgeSousaPinto

Material de Apoio

NoTas 28 Sep 2009 - 14:31 - r5 JorgeSousaPinto

Notas Teste

aqui

Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar-se a exame..

Os alunos com nota teórica superior ou igual a 8 mas com nota final negativa devem também apresentar-se a exame.

Notas Exame

aqui

Consulta dos exames: 6a.fa. 27 de Fevereiro, às 10:00 na recepção do DI.

Notas Época Especial

aqui

Programa 17 Sep 2008 - 13:56 - NEW JorgeSousaPinto

Programa

  1. Estruturas de Dados para pesquisa: Árvores AVL, hashing
  2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; Análise assimptótica do tempo de execução; Recorrências; Análise Amortizada; Casos de estudo.
  3. Estudo de Algoritmos sobre Grafos: Fundamentos; Pesquisa em largura e em profundidade; Árvores geradoras mínimas; Caminhos mais curtos; Fecho transitivo.
  4. Problemas NP-completos: Problemas de decisão; Algoritmos não-determinísticos; Classes de problemas P e NP; Redução polinomial de problemas.
Projectos 25 Oct 2008 - 11:10 - r3 JorgeSousaPinto

Mini-Projecto Algoritmos e Complexidade 2008-09

Sumarios 15 Dec 2008 - 15:44 - r14 JorgeSousaPinto

Sumários Aulas Teóricas

17/9/2008, 11:00-12:00

Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada.

19/9/2008, 14:00-15:00

Motivação para o estudo dos algoritmos. Conceito de correcção de um algoritmo. Noção de invariante de ciclo. Exemplos.

24/9/2008, 11:00-12:00

Continuação da aula anterior: exemplos de invariantes de programas. Introdução ao estudo da análise de tempo de execução dos algoritmos.

26/9/2008, 14:00-15:00

Exemplos de análise do tempo de execução de algoritmos com ciclos. Análise de melhor caso, pior caso, e caso médio. Introdução à notação assimptótica para a variação do tempo de execução com a dimensão do input.

1/10/2008, 11:00-12:00

Conclusão do estudo da notação assimptótica. Caso de estudo: algoritmo "insertion sort". Análise de correcção. Análise temporal de melhor caso.

3/10/2008, 14:00-15:00

Conclusão do estudo do algoritmo "insertion sort": análise de pior caso. Caso de estudo: algoritmo "merge sort". Análise da função de fusão de sequências ordenadas. Introdução ao estudo das equações de recorrência.

8/10/2008, 11:00-12:00

Resolução de recorrências. Método da substituição. Análise da árvore de recursão do algoritmo "merge sort". Prova pelo método da substituição do tempo de execução N lg N. Caso de estudo: algoritmo "quick sort". Estudo do tempo de execução da função de partição.

10/10/2008, 14:00-15:00

Conclusão do estudo do algoritmo "quick sort": análise de pior caso e melhor caso. Breve referência à análise de caso médio. Algoritmo "quick sort" com alietoriedade.

15/10/2008, 11:00-12:00

Algoritmos de ordenação com base em comparações. Análise por contagem de comparações. Árvores de decisão e traços de execução. Teorema do limite inferior para o tempo de execução no pior caso de um algoritmo de ordenação com base em comparações.

17/10/2008, 14:00-15:00

Algoritmos de ordenação de tempo linear. Algoritmo "counting sort". Análise do tempo de execução. Propriedade de estabilidade de um algoritmo de ordenação. Algoritmo de ordenação "radix sort".

22/10/2008, 11:00-12:00

Breve referência à necessidade de utilização de técnicas amortizadas para a análise do tempo de execução de sequências de operações sobre estruturas de dados. Análise agregada de sequências de operações. Exemplos: "stack" com operação "multipop"; sequência de operações de inserção de elementos em árvores binárias de pesquisa.

Introdução do segundo capítulo do programa: conceitos básicos sobre grafos e tipos de grafos.

24/10/2008, 14:00-15:00

Representação de grafos em computador: matrizes de adjacências e listas de adjacências. Discussão. Travessia / pesquisa de grafos. Algoritmo de travessia em largura.

29/10/2008, 11:00-12:00

Continuação do estudo do algoritmo de travessia de grafos em largura. Propriedades da árvore de travessia construída; Cálculo da distância entre dois nós. Análise do tempo de execução.

31/10/2008, 14:00-15:00

Algoritmo de travessia de grafos em profundidade (versão recursiva). "Timestamps". Propriedades da árvore de travessia em profundidade. Análise do tempo de execução.

5/11/2008, 11:00-12:00

Árvores geradoras mínimas de um grafo. Algoritmo de Prim para a construção de AGMs. Prova de correcção.

7/11/2008, 14:00-15:00

Análise do tempo de execução do algoritmo de Prim. Problemas de caminhos mais curtos num grafo. Introdução ao algoritmo de Dijkstra.

12/11/2008, 11:00-12:00

Estudo do algoritmo de Dijkstra. Variantes do problema de caminhos mais curtos: "single pair", "single source", "single destination", "all pairs". A estratégia algorítmica "greedy". Problemas com sub-estrutura óptima.

14/11/2008, 14:00-15:00

Fecho transitivo de um grafo. Algoritmo de Warshall. Adpatação para a resolução do problema "all pairs shortest paths".

19/11/2008, 11:00-12:00

Introdução ao estudo dos problemas NP-completos. Problemas de decisão e problemas de optimização. Exemplos de problemas "difíceis".

21/11/2008, 14:00-15:00

A classe de problemas "P". Noção de algoritmo não-determinístico. A classe de problemas "NP".

26/11/2008, 11:00-12:00

Discussão da questão P=?NP.

28/11/2008, 14:00-15:00

Redução polinomial de um problema a outro.

3/12/2008, 11:00-12:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

5/12/2008, 14:00-15:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

10/12/2008, 11:00-12:00

Definição de problema NP-completo. Restrições sobre problemas; problemas aparentemente semelhantes.

12/12/2008, 14:00-15:00

Os problemas NP-completos SAT e k-SAT. Redução de 3-SAT ao problema da existência de uma "clique" num grafo. Redução de problemas NP-completos: algoritmos aproximados.

Sumários Aulas Teórico-Práticas

TP2

25/9/2008, 14:00-16:00

Exercícios de revisão: programação com listas ligadas em C. Implementação de uma biblioteca de filas de espera.

2/10/2008, 14:00-16:00

Análise do tempo de execução das funções de pesquisa e inserção em árvores binárias de pesquisa. Análise de melhor e pior caso. Importância da profundidade de uma árvore. Motivação da utilização de árvores AVL.

9/10/2008, 14:00-16:00

Árvores AVL: desenvolvimento da função de inserção.

16/10/2008, 14:00-16:00

Árvores AVL: conclusão do desenvolvimento da função de inserção. Tabelas de "hash": introdução e princípios básicos. Resolução de colisões por "linear probing" (endereçamento aberto). Algoritmos de inserção, pesquisa, e remoção.

23/10/2008, 14:00-16:00

Tabelas de "hash" encadeadas: implementação das funções de inserção, remoção, pesquisa, e actualização. Discussão comparativa com a implementação por "linear probing".

30/10/2008, 14:00-16:00

Resolução de exercícios sobre análise de algoritmos iterativos: Avaliação de polinómios e pesquisa linear. Invariantes e análise do tempo de execução.

6/11/2008, 14:00-16:00

Resolução de exercícios sobre análise de algoritmos iterativos e recursivos: Algoritmos de ordenação incrementais ("bubble sort", "max sort", "insertion sort"). Análise do tempo de execução. Equações de recorrência e árvores de recursão.

13/11/2008, 14:00-16:00

Resolução de exercícios sobre "heaps". Implementação dinâmica.

20/11/2008, 14:00-16:00

Resolução de exercícios sobre "heaps". Implementação Estática.

27/11/2008, 14:00-16:00

Resolução de exercícios sobre grafos. Conversão de representações. Ordenações topológicas. Resolução do problema por travessias em profundidade e em largura.

4/12/2008, 14:00-16:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

11/12/2008, 14:00-16:00

Algoritmos "greedy": Implementação em C dos algoritmos de Prim e de Dijkstra.

TP3

25/9/2008, 16:00-18:00

Exercícios de revisão: programação com listas ligadas em C. Implementação de uma biblioteca de filas de espera.

2/10/2008, 16:00-18:00

Análise do tempo de execução das funções de pesquisa e inserção em árvores binárias de pesquisa. Análise de melhor e pior caso. Importância da profundidade de uma árvore. Motivação da utilização de árvores AVL.

9/10/2008, 16:00-18:00

Árvores AVL: desenvolvimento da função de inserção.

16/10/2008, 16:00-18:00

Árvores AVL: simulação de uma sequência de inserções. Tabelas de "hash": introdução e princípios básicos. Resolução de colisões por "linear probing" (endereçamento aberto). Algoritmos de inserção, pesquisa, e remoção.

23/10/2008, 16:00-18:00

Tabelas de "hash" encadeadas: implementação das funções de inserção, remoção, pesquisa, e actualização. Discussão comparativa com a implementação por "linear probing".

30/10/2008, 16:00-18:00

Resolução de exercícios sobre análise de algoritmos iterativos: Avaliação de polinómios e pesquisa linear. Invariantes e análise do tempo de execução.

6/11/2008, 16:00-18:00

Resolução de exercícios sobre análise de algoritmos iterativos e recursivos: Algoritmos de ordenação incrementais ("bubble sort", "max sort", "insertion sort"). Análise do tempo de execução. Equações de recorrência e árvores de recursão.

13/11/2008, 16:00-18:00

Resolução de exercícios sobre "heaps". Implementação dinâmica.

20/11/2008, 16:00-18:00

Resolução de exercícios sobre "heaps". Implementação estática.

27/11/2008, 16:00-18:00

Resolução de exercícios sobre grafos. Conversão de representações. Ordenações topológicas. Resolução do problema por travessias em profundidade e em largura.

4/12/2008, 16:00-18:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

11/12/2008, 16:00-18:00

Algoritmos "greedy": Implementação em C dos algoritmos de Prim e de Dijkstra.

WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/AeC web The Education/AeC web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC Copyright 2020 by contributing authors 2009-09-28T14:32:57Z Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avisos 2009-09-28T14:32:57Z 28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ... (last changed by JorgeSousaPinto) JorgeSousaPinto NoTas http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/NoTas 2009-09-28T14:31:23Z Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ... (last changed by JorgeSousaPinto) JorgeSousaPinto WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebSideBar 2009-02-03T23:13:11Z Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos (last changed by JorgeSousaPinto) JorgeSousaPinto MaterialApoio http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/MaterialApoio 2008-12-17T22:52:32Z Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ... (last changed by JorgeSousaPinto) JorgeSousaPinto Sumarios http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Sumarios 2008-12-15T15:44:12Z Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ... (last changed by JorgeSousaPinto) JorgeSousaPinto Projectos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Projectos 2008-10-25T11:10:07Z Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes (last changed by JorgeSousaPinto) JorgeSousaPinto FaqProjecto http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/FaqProjecto 2008-10-25T11:06:20Z Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes (last changed by JorgeSousaPinto) JorgeSousaPinto Avaliacao http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avaliacao 2008-09-18T13:43:31Z Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ... (last changed by JorgeSousaPinto) JorgeSousaPinto WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebHome 2008-09-18T13:39:03Z Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ... (last changed by JorgeSousaPinto) JorgeSousaPinto Equipa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Equipa 2008-09-17T14:04:55Z Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento: (last changed by JorgeSousaPinto) JorgeSousaPinto Programa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Programa 2008-09-17T13:56:55Z Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ... (last changed by JorgeSousaPinto) JorgeSousaPinto Bibliografia http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Bibliografia 2008-09-17T13:45:06Z Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ... (last changed by JorgeSousaPinto) JorgeSousaPinto WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebPreferences 2008-09-17T13:17:54Z Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ... (last changed by AlcinoCunha) AlcinoCunha WebStatistics http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebStatistics 2008-09-16T22:50:46Z Statistics for Education/AeC Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save ... (last changed by TWikiGuest) TWikiGuest WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebTopicActions 2007-05-18T08:03:35Z (last changed by AlcinoCunha) AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebCss 2007-02-16T14:32:59Z .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) AlcinoCunha
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor

50 Recent Changes in TWiki Web retrieved at 16:23 (GMT)

Avisos 28 Sep 2009 - 14:32 - r14 JorgeSousaPinto
28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ...
NoTas 28 Sep 2009 - 14:31 - r5 JorgeSousaPinto
Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ...
WebSideBar 03 Feb 2009 - 23:13 - r9 JorgeSousaPinto
Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos
MaterialApoio 17 Dec 2008 - 22:52 - r6 JorgeSousaPinto
Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ...
Sumarios 15 Dec 2008 - 15:44 - r14 JorgeSousaPinto
Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ...
Projectos 25 Oct 2008 - 11:10 - r3 JorgeSousaPinto
Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes
FaqProjecto 25 Oct 2008 - 11:06 - NEW JorgeSousaPinto
Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes
Avaliacao 18 Sep 2008 - 13:43 - NEW JorgeSousaPinto
Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ...
WebHome 18 Sep 2008 - 13:39 - r16 JorgeSousaPinto
Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ...
Equipa 17 Sep 2008 - 14:04 - NEW JorgeSousaPinto
Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento:
Programa 17 Sep 2008 - 13:56 - NEW JorgeSousaPinto
Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ...
Bibliografia 17 Sep 2008 - 13:45 - NEW JorgeSousaPinto
Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ...
WebPreferences 17 Sep 2008 - 13:17 - r16 AlcinoCunha
Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ...
WebStatistics 16 Sep 2008 - 22:50 - r351 TWikiGuest
Statistics for Education/AeC Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save ...
WebTopicActions 18 May 2007 - 08:03 - r2 AlcinoCunha
WebCss 16 Feb 2007 - 14:32 - r3 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/AeC web
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/AeC web"}% /Education/AeC
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
Found 27 topics.

See also: rss-small RSS feed, recent changes with 50, 100, 200, 500, 1000 topics, all changes

WebCss 16 Feb 2007 - 14:32 - r3 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; }

.natBreadCrumbs { width:0px; height:0px; overflow:hidden; }

.avisos { color: #444; font-size:12px; }

.natMainFooterContents, .natMainHeaderContents { padding:0px; margin:0px 0px; }

WebHome 18 Sep 2008 - 13:39 - r16 JorgeSousaPinto

Algorithms are fundamental to computer science and software engineering. The real-world performance of any software system depends on only two things: (1) the algorithms chosen and (2) the suitability and efficiency of the various layers of implementation. Good algorithm design is therefore crucial for the performance of al l software systems. Moreover, the study of algorithms provides insight into the intrinsic nature of the problem as well as possible solution techniques independent of programming language, programming paradigm, computer hardware, or any other implementation aspect. An important part of computing is the ability to select algorithms appropriate to particular purposes and to apply them, recognizing the possibility that no suitable algorithm may exist. This facility relies on understanding the range of algorithms that address an important set of well-defined problems, recognizing their strengths and weaknesses, and their suitability in particular contexts. Efficiency is a pervasive theme throughout this area.

in IEEECS-ACM Computing Curricula 2001

O objectivo principal da disciplina de Algoritmos e Complexidade é a introdução de técnicas para o desenho e análise de algoritmos. O ênfase é colocado nos algoritmos como objectos passíveis de serem analisados formalmente, mas também nos aspectos pragmáticos da sua execução. Esta abordagem requer pois dos alunos um trabalho quer ao nível teórico quer ao nível prático, laboratorial.

WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
Education/AeC Web Changed Changed by
Avaliacao 18 Sep 2008 - 13:43 - NEW JorgeSousaPinto
Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ...
Avisos 28 Sep 2009 - 14:32 - r14 JorgeSousaPinto
28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ...
Bibliografia 17 Sep 2008 - 13:45 - NEW JorgeSousaPinto
Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ...
Equipa 17 Sep 2008 - 14:04 - NEW JorgeSousaPinto
Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento:
FaqProjecto 25 Oct 2008 - 11:06 - NEW JorgeSousaPinto
Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes
MaterialApoio 17 Dec 2008 - 22:52 - r6 JorgeSousaPinto
Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ...
NoTas 28 Sep 2009 - 14:31 - r5 JorgeSousaPinto
Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ...
Programa 17 Sep 2008 - 13:56 - NEW JorgeSousaPinto
Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ...
Projectos 25 Oct 2008 - 11:10 - r3 JorgeSousaPinto
Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes
Sumarios 15 Dec 2008 - 15:44 - r14 JorgeSousaPinto
Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ...
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/AeC web
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebCss 16 Feb 2007 - 14:32 - r3 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebHome 18 Sep 2008 - 13:39 - r16 JorgeSousaPinto
Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ...
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
WebPreferences 17 Sep 2008 - 13:17 - r16 AlcinoCunha
Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ...
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/AeC web"}% /Education/AeC
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSideBar 03 Feb 2009 - 23:13 - r9 JorgeSousaPinto
Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos
WebStatistics 16 Sep 2008 - 22:50 - r351 TWikiGuest
Statistics for Education/AeC Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 18 May 2007 - 08:03 - r2 AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
Found 27 topics.

See also the faster WebTopicList

WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação
Sumários
Projectos
Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
This is a subscription service to be automatically notified by e-mail when topics change in this Education/AeC web. This is a convenient service, so you do not have to come back and check all the time if something has changed. To subscribe, please add a bullet with your WikiName in alphabetical order to this list:

Web Changes Notification Service

Each TWiki web has an automatic e-mail notification service that sends you an e-mail with links to all of the topics modified since the last alert.

Users subscribe to email notifications using their WikiName or an alternative email address, and can specify the webs/topics they wish to track using one of these bullet list formats:

three spaces * [ webname . ] wikiName - SMTP mail address
three spaces * [ webName . ] wikiName
three spaces * SMTP mail address
three spaces * SMTP mail address : topics
three spaces * [ webname . ] wikiName : topics

In the above examples, topics is a space-separated list of topic names. The user may further customize the specific content they will receive using the following formats:

  • Specify topics without a Web. prefix
  • Topics must exist in this web.
  • Topics may be specified using * wildcards
  • Each topic may optionally be preceded by a '+' or '-' sign. The '+' sign means "subscribe to this topic" (the same as not putting anything). The '-' sign means "unsubscribe" or "don't send notifications regarding this topic". This allows users to elect to filter out certain topics (and their children, to an arbitrary depth). Topic filters ('-') take precedence over topic includes ('+').
  • Each topic may optionally be followed by an integer in parentheses, indicating the depth of the tree of children below that topic. Changes in all these children will be detected and reported along with changes to the topic itself. Note This uses the TWiki "Topic parent" feature.
  • Each topic may optionally be immediately followed by an exclamation mark ! or a question mark ? with no intervening spaces, indicating that the topic (and children if there is a tree depth specifier as well) should be mailed out as complete topics instead of change summaries. ! causes the topic to be mailed every time even if there have been no changes, ? will mail the topic only if there have been changes to it. This only makes sense for subscriptions.

For example: Subscribe Daisy to all changes to topics in this web.

   * daisy.cutter@flowers.com
Subscribe Daisy to all changes in all webs that start with Web.
   * daisy.cutter@flowers.com: Web*
Subscribe Daisy to changes to topics starting with Petal, and their immediate children, WeedKillers and children to a depth of 3, and all topics that match start with Pretty and end with Flowers e.g. PrettyPinkFlowers
   * TWiki.DaisyCutter: Petal* (1) TWiki.WeedKillers (3) Pretty*Flowers
Subscribe StarTrekFan to changes to all topics that start with Star except those that end in Wars, sInTheirEyes or shipTroopers.
   * TWiki.StarTrekFan: Star* - *Wars - *sInTheirEyes - *shipTroopers
Subscribe Daisy to the full content of NewsLetter whenever it has changed
   * daisy@flowers.com: TWiki.NewsLetter?
Subscribe buttercup to NewsLetter and its immediate children, even if it hasn't changed.
   * buttercup@flowers.com: TWiki.NewsLetter! (1)
Subscribe GardenGroup (which includes Petunia) to all changed topics under AllnewsLetters to a depth of 3. Then unsubscribe Petunia from the ManureNewsLetter, which she would normally get as a member of GardenGroup? :
   * TWiki.GardenGroup: TWiki.AllNewsLetters? (3)
   * petunia@flowers.com: - TWiki.ManureNewsLetter
A user may be listed many times in the WebNotify topic. Where a user has several lines in WebNotify that all match the same topic, they will only be notified about changes that topic once (though they will still receive individual mails for news topics).

If a TWiki group is listed for notification, the group will be recursively expanded to the e-mail addresses of all members.

TIP Tip: List names in alphabetical order to make it easier to find the names.

Note for System Administrators: Notification is supported by an add-on to the TWiki kernel called the MailerContrib. See the MailerContrib topic for details of how to set up this service.

Note: If you prefer a news feed, point your reader to WebRss (for RSS 1.0 feeds) or WebAtom (for ATOM 1.0 feeds). Learn more at WebRssBase and WebAtomBase, respectively.

Related topics: WebChangesAlert, TWikiUsers, TWikiRegistration

WebPreferences 17 Sep 2008 - 13:17 - r16 AlcinoCunha

Education/AeC Web Preferences

The following settings are web preferences of the Education.AeC web. These preferences overwrite the site-level preferences in TWiki.TWikiPreferences and Main.TWikiPreferences, and can be overwritten by user preferences (your personal topic, eg: TWikiGuest in the Main web).

Web Preferences Settings

These settings override the defaults for this web only. See full list of defaults with explanation. Many of the settings below are commented out. Remove the # sign to enable a local customisation.

Natural Skin configuration

  • Set SKIN=nat

  • Set SKINSTYLE = Plain
  • Set STYLEBORDER = thin
  • Set STYLEBUTTONS = off
  • Set STYLESIDEBAR = left
  • Set STYLEVARIATION = none
  • Set STYLESEARCHBOX = off

  • Set PAGETITLE=Algoritmos e Complexidade

  • Set NATWEBLOGO = Algoritmos e Complexidade

  • Set WEBCOPYRIGHT = This site is powered by the TWiki collaboration platform Copyright © by the contributing authors. Ideas, requests, problems? Send feedback.

  • List of topics of the Education/AeC web:

 #D0D0D0 
  • Web-specific background color: (Pick a lighter one of the StandardColors).
    • Set WEBBGCOLOR = #D0D0D0
    • Note: This setting is automatically configured when you create a web

  • Image, URL and alternate tooltip text of web's logo.
    Note: Don't add your own local logos to the TWikiLogos topic; create your own logos topic instead.

  • List this web in the SiteMap. If you want the web listed, then set SITEMAPLIST to on, do not set NOSEARCHALL, and add the "what" and "use to..." description for the site map. Use links that include the name of the web, i.e. Education/AeC.Topic links.
    Note: Unlike other variables, the setting of SITEMAPLIST is not inherited from parent webs. It has to be set in every web that is to be listed in the SiteMap
    • Set SITEMAPLIST = on
    • Set SITEMAPWHAT = Algoritmos e Complexidade
    • Set SITEMAPUSETO = Licenciatura em Engenharia Informática
    • Note: Above settings are automatically configured when you create a web

  • Exclude web from a web="all" search: (Set to on for hidden webs).
    • Set NOSEARCHALL =
    • Note: This setting is automatically configured when you create a web

  • Prevent automatic linking of WikiWords and acronyms (if set to on); link WikiWords (if empty); can be overwritten by web preferences:
    • #Set NOAUTOLINK =
    • Note: You can still use the [[...][...]] syntax to link topics if you disabled WikiWord linking. The <noautolink> ... </noautolink> syntax can be used to prevents links within a block of text.

  • Default template for new topics for this web:
    • WebTopicEditTemplate? : Default template for new topics in this web. (Site-level is used if topic does not exist)
    • TWiki.WebTopicEditTemplate: Site-level default topic template

  • Comma separated list of forms that can be attached to topics in this web. See TWikiForms for more information.
    • Set WEBFORMS =

  • Users or groups who are not / are allowed to view / change / rename topics in the Education/AeC web: (See TWikiAccessControl). Remove the # to enable any of these settings. Remember that an empty setting is a valid setting; setting DENYWEBVIEW to nothing means that anyone can view the web.
    • #Set DENYWEBVIEW =
    • #Set ALLOWWEBVIEW =
    • #Set DENYWEBCHANGE =
    • Set ALLOWWEBCHANGE = JorgeSousaPinto
    • #Set DENYWEBRENAME =
    • Set ALLOWWEBRENAME = JorgeSousaPinto

  • Web preferences that are not allowed to be overridden by user or topic preferences:
    • Set FINALPREFERENCES = NOSEARCHALL, ATTACHFILESIZELIMIT, WIKIWEBMASTER, WEBCOPYRIGHT, WEBTOPICLIST, DENYWEBVIEW, ALLOWWEBVIEW, DENYWEBCHANGE, ALLOWWEBCHANGE, DENYWEBRENAME, ALLOWWEBRENAME

Help on Preferences

  • A preference setting is defined by:
    3 or 6 spaces * Set NAME = value
    Example:
    • Set WEBBGCOLOR = #FFFFC0
  • A preferences setting can be disabled with a # sign. Remove the # sign to enable a local customisation. Example:
  • Preferences are used as TWikiVariables by enclosing the name in percent signs. Example:
    • When you write variable %WEBBGCOLOR% , it gets expanded to #D0D0D0
  • The sequential order of the preference settings is significant. Define preferences that use other preferences first, i.e. set WEBCOPYRIGHT before WIKIWEBMASTER since %WEBCOPYRIGHT% uses the %WIKIWEBMASTER% variable.
  • You can introduce your own preferences variables and use them in your topics and templates.

Related Topics

Tools

WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
TWiki search results for \.* http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC The Education/AeC web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. en-us Copyright 2020 by contributing authors TWiki Administrator [webmaster@di.uminho.pt] The contributing authors of TWiki TWiki DIUM.Education/AeC http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC /twiki/pub/Main/LocalLogos/um_eengP.jpg Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avisos 28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ... (last changed by JorgeSousaPinto) 2009-09-28T14:32:57Z JorgeSousaPinto NoTas http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/NoTas Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ... (last changed by JorgeSousaPinto) 2009-09-28T14:31:23Z JorgeSousaPinto WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebSideBar Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos (last changed by JorgeSousaPinto) 2009-02-03T23:13:11Z JorgeSousaPinto MaterialApoio http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/MaterialApoio Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ... (last changed by JorgeSousaPinto) 2008-12-17T22:52:32Z JorgeSousaPinto Sumarios http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Sumarios Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ... (last changed by JorgeSousaPinto) 2008-12-15T15:44:12Z JorgeSousaPinto Projectos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Projectos Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes (last changed by JorgeSousaPinto) 2008-10-25T11:10:07Z JorgeSousaPinto FaqProjecto http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/FaqProjecto Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes (last changed by JorgeSousaPinto) 2008-10-25T11:06:20Z JorgeSousaPinto Avaliacao http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avaliacao Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ... (last changed by JorgeSousaPinto) 2008-09-18T13:43:31Z JorgeSousaPinto WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebHome Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ... (last changed by JorgeSousaPinto) 2008-09-18T13:39:03Z JorgeSousaPinto Equipa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Equipa Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento: (last changed by JorgeSousaPinto) 2008-09-17T14:04:55Z JorgeSousaPinto Programa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Programa Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ... (last changed by JorgeSousaPinto) 2008-09-17T13:56:55Z JorgeSousaPinto Bibliografia http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Bibliografia Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ... (last changed by JorgeSousaPinto) 2008-09-17T13:45:06Z JorgeSousaPinto WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebPreferences Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ... (last changed by AlcinoCunha) 2008-09-17T13:17:54Z AlcinoCunha WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebTopicActions (last changed by AlcinoCunha) 2007-05-18T08:03:35Z AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebCss .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) 2007-02-16T14:32:59Z AlcinoCunha WebTopBar http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebTopBar (last changed by AlcinoCunha) 2007-02-13T14:43:04Z AlcinoCunha
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor

Web Search

Search: \.*

Found 0 topics.

  Advanced search | Help
TIP: to search for all topics that contain "SOAP", "WSDL", a literal "web service", but not "shampoo", write: soap wsdl "web service" -shampoo
Search where:       
(otherwise search Education/AeC Web only)

Other search options:
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor

Advanced Search

Search: \.*

Education/AeC Web Changed Changed by
Avaliacao 18 Sep 2008 - 13:43 - NEW JorgeSousaPinto

Método de Avaliação

Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini-projecto opcional, a entregar e defender na semana de 5 a 9 de Janeiro:

  • NF = .1 ∗ Pratica + .3 ∗ Projecto + .6 ∗ Teorica
  • NF = .1 ∗ Pratica + .9 ∗ Teorica , sendo neste caso NF ≤ 14

A nota teórica será obtida através de teste ou exame e deverá sempre ser superior ou igual a 8.5 valores.

Avisos 28 Sep 2009 - 14:32 - r14 JorgeSousaPinto
28 de Setembro Notas do exame de época especial disponíveis nesta página.

14 de Setembro Exame disponível aqui.

25 de Fevereiro Notas do exame disponíveis nesta página.

4 de Fevereiro Resolução sucinta do teste disponível aqui .

3 de Fevereiro Notas do teste disponíveis nesta página.

20 de Janeiro Teste (13 de Janeiro) disponível aqui.

29 de Dezembro Sessões de dúvidas: uma primeira sessão terá lugar na 5a.fa. 8 de Janeiro, às 16:00 no anfiteatro DI-A2.

17 de Dezembro Encontra-se no piso -2 do DI uma folha para marcação das entregas dos trabalhos práticos da disciplina, que terão lugar nos dias 5, 6, e 7 de Janeiro.

12 de Novembro Disponibilizadas hoje duas colecções de exercícios de exame.

21 de Outubro Disponível o enunciado do mini-projecto. As questões sobre o mesmo que forem colocadas por email à equipa docente serão disponibilizadas numa FAQ.

20 de Outubro Actualizados os slides disponíveis nesta página (todo o primeiro capítulo disponível).

17 Setembro Tiveram hoje início as aulas teóricas. As aulas TP, e respectiva marcação de turnos, iniciar-se-ão na próxima semana.

Bibliografia 17 Sep 2008 - 13:45 - NEW JorgeSousaPinto

Bibliografia

  1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. Introduction to Algorithms, Second Edition. The MIT Press and McGraw-Hill Book Company, 2001.
  2. Donald E. Knuth. The Art of Computer Programming
    • Volume I: Fundamental Algorithms, 3rd Edition. Addison-Wesley, 1997.
    • Volume II: Seminumerical Algorithms, 3rd Edition. Addison-Wesley, 1997.
    • Volume III: Sorting and Searching. 2nd edition Addison-Wesley, 1998.
  3. Robert L. Kruse, Bruce P. Leung, and Clovis L. Tondo. Data Structures and Program Design in C. Prentice Hall, 1991.
Equipa 17 Sep 2008 - 14:04 - NEW JorgeSousaPinto

Equipa Docente

FaqProjecto 25 Oct 2008 - 11:06 - NEW JorgeSousaPinto

Mini-projecto Algoritmos e Complexidade 2008-09

Perguntas Frequentes

MaterialApoio 17 Dec 2008 - 22:52 - r6 JorgeSousaPinto

Material de Apoio

NoTas 28 Sep 2009 - 14:31 - r5 JorgeSousaPinto

Notas Teste

aqui

Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar-se a exame..

Os alunos com nota teórica superior ou igual a 8 mas com nota final negativa devem também apresentar-se a exame.

Notas Exame

aqui

Consulta dos exames: 6a.fa. 27 de Fevereiro, às 10:00 na recepção do DI.

Notas Época Especial

aqui

Programa 17 Sep 2008 - 13:56 - NEW JorgeSousaPinto

Programa

  1. Estruturas de Dados para pesquisa: Árvores AVL, hashing
  2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; Análise assimptótica do tempo de execução; Recorrências; Análise Amortizada; Casos de estudo.
  3. Estudo de Algoritmos sobre Grafos: Fundamentos; Pesquisa em largura e em profundidade; Árvores geradoras mínimas; Caminhos mais curtos; Fecho transitivo.
  4. Problemas NP-completos: Problemas de decisão; Algoritmos não-determinísticos; Classes de problemas P e NP; Redução polinomial de problemas.
Projectos 25 Oct 2008 - 11:10 - r3 JorgeSousaPinto

Mini-Projecto Algoritmos e Complexidade 2008-09

Sumarios 15 Dec 2008 - 15:44 - r14 JorgeSousaPinto

Sumários Aulas Teóricas

17/9/2008, 11:00-12:00

Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada.

19/9/2008, 14:00-15:00

Motivação para o estudo dos algoritmos. Conceito de correcção de um algoritmo. Noção de invariante de ciclo. Exemplos.

24/9/2008, 11:00-12:00

Continuação da aula anterior: exemplos de invariantes de programas. Introdução ao estudo da análise de tempo de execução dos algoritmos.

26/9/2008, 14:00-15:00

Exemplos de análise do tempo de execução de algoritmos com ciclos. Análise de melhor caso, pior caso, e caso médio. Introdução à notação assimptótica para a variação do tempo de execução com a dimensão do input.

1/10/2008, 11:00-12:00

Conclusão do estudo da notação assimptótica. Caso de estudo: algoritmo "insertion sort". Análise de correcção. Análise temporal de melhor caso.

3/10/2008, 14:00-15:00

Conclusão do estudo do algoritmo "insertion sort": análise de pior caso. Caso de estudo: algoritmo "merge sort". Análise da função de fusão de sequências ordenadas. Introdução ao estudo das equações de recorrência.

8/10/2008, 11:00-12:00

Resolução de recorrências. Método da substituição. Análise da árvore de recursão do algoritmo "merge sort". Prova pelo método da substituição do tempo de execução N lg N. Caso de estudo: algoritmo "quick sort". Estudo do tempo de execução da função de partição.

10/10/2008, 14:00-15:00

Conclusão do estudo do algoritmo "quick sort": análise de pior caso e melhor caso. Breve referência à análise de caso médio. Algoritmo "quick sort" com alietoriedade.

15/10/2008, 11:00-12:00

Algoritmos de ordenação com base em comparações. Análise por contagem de comparações. Árvores de decisão e traços de execução. Teorema do limite inferior para o tempo de execução no pior caso de um algoritmo de ordenação com base em comparações.

17/10/2008, 14:00-15:00

Algoritmos de ordenação de tempo linear. Algoritmo "counting sort". Análise do tempo de execução. Propriedade de estabilidade de um algoritmo de ordenação. Algoritmo de ordenação "radix sort".

22/10/2008, 11:00-12:00

Breve referência à necessidade de utilização de técnicas amortizadas para a análise do tempo de execução de sequências de operações sobre estruturas de dados. Análise agregada de sequências de operações. Exemplos: "stack" com operação "multipop"; sequência de operações de inserção de elementos em árvores binárias de pesquisa.

Introdução do segundo capítulo do programa: conceitos básicos sobre grafos e tipos de grafos.

24/10/2008, 14:00-15:00

Representação de grafos em computador: matrizes de adjacências e listas de adjacências. Discussão. Travessia / pesquisa de grafos. Algoritmo de travessia em largura.

29/10/2008, 11:00-12:00

Continuação do estudo do algoritmo de travessia de grafos em largura. Propriedades da árvore de travessia construída; Cálculo da distância entre dois nós. Análise do tempo de execução.

31/10/2008, 14:00-15:00

Algoritmo de travessia de grafos em profundidade (versão recursiva). "Timestamps". Propriedades da árvore de travessia em profundidade. Análise do tempo de execução.

5/11/2008, 11:00-12:00

Árvores geradoras mínimas de um grafo. Algoritmo de Prim para a construção de AGMs. Prova de correcção.

7/11/2008, 14:00-15:00

Análise do tempo de execução do algoritmo de Prim. Problemas de caminhos mais curtos num grafo. Introdução ao algoritmo de Dijkstra.

12/11/2008, 11:00-12:00

Estudo do algoritmo de Dijkstra. Variantes do problema de caminhos mais curtos: "single pair", "single source", "single destination", "all pairs". A estratégia algorítmica "greedy". Problemas com sub-estrutura óptima.

14/11/2008, 14:00-15:00

Fecho transitivo de um grafo. Algoritmo de Warshall. Adpatação para a resolução do problema "all pairs shortest paths".

19/11/2008, 11:00-12:00

Introdução ao estudo dos problemas NP-completos. Problemas de decisão e problemas de optimização. Exemplos de problemas "difíceis".

21/11/2008, 14:00-15:00

A classe de problemas "P". Noção de algoritmo não-determinístico. A classe de problemas "NP".

26/11/2008, 11:00-12:00

Discussão da questão P=?NP.

28/11/2008, 14:00-15:00

Redução polinomial de um problema a outro.

3/12/2008, 11:00-12:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

5/12/2008, 14:00-15:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

10/12/2008, 11:00-12:00

Definição de problema NP-completo. Restrições sobre problemas; problemas aparentemente semelhantes.

12/12/2008, 14:00-15:00

Os problemas NP-completos SAT e k-SAT. Redução de 3-SAT ao problema da existência de uma "clique" num grafo. Redução de problemas NP-completos: algoritmos aproximados.

Sumários Aulas Teórico-Práticas

TP2

25/9/2008, 14:00-16:00

Exercícios de revisão: programação com listas ligadas em C. Implementação de uma biblioteca de filas de espera.

2/10/2008, 14:00-16:00

Análise do tempo de execução das funções de pesquisa e inserção em árvores binárias de pesquisa. Análise de melhor e pior caso. Importância da profundidade de uma árvore. Motivação da utilização de árvores AVL.

9/10/2008, 14:00-16:00

Árvores AVL: desenvolvimento da função de inserção.

16/10/2008, 14:00-16:00

Árvores AVL: conclusão do desenvolvimento da função de inserção. Tabelas de "hash": introdução e princípios básicos. Resolução de colisões por "linear probing" (endereçamento aberto). Algoritmos de inserção, pesquisa, e remoção.

23/10/2008, 14:00-16:00

Tabelas de "hash" encadeadas: implementação das funções de inserção, remoção, pesquisa, e actualização. Discussão comparativa com a implementação por "linear probing".

30/10/2008, 14:00-16:00

Resolução de exercícios sobre análise de algoritmos iterativos: Avaliação de polinómios e pesquisa linear. Invariantes e análise do tempo de execução.

6/11/2008, 14:00-16:00

Resolução de exercícios sobre análise de algoritmos iterativos e recursivos: Algoritmos de ordenação incrementais ("bubble sort", "max sort", "insertion sort"). Análise do tempo de execução. Equações de recorrência e árvores de recursão.

13/11/2008, 14:00-16:00

Resolução de exercícios sobre "heaps". Implementação dinâmica.

20/11/2008, 14:00-16:00

Resolução de exercícios sobre "heaps". Implementação Estática.

27/11/2008, 14:00-16:00

Resolução de exercícios sobre grafos. Conversão de representações. Ordenações topológicas. Resolução do problema por travessias em profundidade e em largura.

4/12/2008, 14:00-16:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

11/12/2008, 14:00-16:00

Algoritmos "greedy": Implementação em C dos algoritmos de Prim e de Dijkstra.

TP3

25/9/2008, 16:00-18:00

Exercícios de revisão: programação com listas ligadas em C. Implementação de uma biblioteca de filas de espera.

2/10/2008, 16:00-18:00

Análise do tempo de execução das funções de pesquisa e inserção em árvores binárias de pesquisa. Análise de melhor e pior caso. Importância da profundidade de uma árvore. Motivação da utilização de árvores AVL.

9/10/2008, 16:00-18:00

Árvores AVL: desenvolvimento da função de inserção.

16/10/2008, 16:00-18:00

Árvores AVL: simulação de uma sequência de inserções. Tabelas de "hash": introdução e princípios básicos. Resolução de colisões por "linear probing" (endereçamento aberto). Algoritmos de inserção, pesquisa, e remoção.

23/10/2008, 16:00-18:00

Tabelas de "hash" encadeadas: implementação das funções de inserção, remoção, pesquisa, e actualização. Discussão comparativa com a implementação por "linear probing".

30/10/2008, 16:00-18:00

Resolução de exercícios sobre análise de algoritmos iterativos: Avaliação de polinómios e pesquisa linear. Invariantes e análise do tempo de execução.

6/11/2008, 16:00-18:00

Resolução de exercícios sobre análise de algoritmos iterativos e recursivos: Algoritmos de ordenação incrementais ("bubble sort", "max sort", "insertion sort"). Análise do tempo de execução. Equações de recorrência e árvores de recursão.

13/11/2008, 16:00-18:00

Resolução de exercícios sobre "heaps". Implementação dinâmica.

20/11/2008, 16:00-18:00

Resolução de exercícios sobre "heaps". Implementação estática.

27/11/2008, 16:00-18:00

Resolução de exercícios sobre grafos. Conversão de representações. Ordenações topológicas. Resolução do problema por travessias em profundidade e em largura.

4/12/2008, 16:00-18:00

Não houve aula. Motivo: interrupção para avaliação, por decisão do director de curso.

11/12/2008, 16:00-18:00

Algoritmos "greedy": Implementação em C dos algoritmos de Prim e de Dijkstra.

WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/AeC web The Education/AeC web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC Copyright 2020 by contributing authors 2009-09-28T14:32:57Z Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avisos 2009-09-28T14:32:57Z 28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ... (last changed by JorgeSousaPinto) JorgeSousaPinto NoTas http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/NoTas 2009-09-28T14:31:23Z Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ... (last changed by JorgeSousaPinto) JorgeSousaPinto WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebSideBar 2009-02-03T23:13:11Z Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos (last changed by JorgeSousaPinto) JorgeSousaPinto MaterialApoio http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/MaterialApoio 2008-12-17T22:52:32Z Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ... (last changed by JorgeSousaPinto) JorgeSousaPinto Sumarios http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Sumarios 2008-12-15T15:44:12Z Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ... (last changed by JorgeSousaPinto) JorgeSousaPinto Projectos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Projectos 2008-10-25T11:10:07Z Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes (last changed by JorgeSousaPinto) JorgeSousaPinto FaqProjecto http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/FaqProjecto 2008-10-25T11:06:20Z Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes (last changed by JorgeSousaPinto) JorgeSousaPinto Avaliacao http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avaliacao 2008-09-18T13:43:31Z Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ... (last changed by JorgeSousaPinto) JorgeSousaPinto WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebHome 2008-09-18T13:39:03Z Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ... (last changed by JorgeSousaPinto) JorgeSousaPinto Equipa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Equipa 2008-09-17T14:04:55Z Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento: (last changed by JorgeSousaPinto) JorgeSousaPinto Programa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Programa 2008-09-17T13:56:55Z Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ... (last changed by JorgeSousaPinto) JorgeSousaPinto Bibliografia http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Bibliografia 2008-09-17T13:45:06Z Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ... (last changed by JorgeSousaPinto) JorgeSousaPinto WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebPreferences 2008-09-17T13:17:54Z Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ... (last changed by AlcinoCunha) AlcinoCunha WebStatistics http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebStatistics 2008-09-16T22:50:46Z Statistics for Education/AeC Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save ... (last changed by TWikiGuest) TWikiGuest WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebTopicActions 2007-05-18T08:03:35Z (last changed by AlcinoCunha) AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebCss 2007-02-16T14:32:59Z .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) AlcinoCunha
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor

50 Recent Changes in TWiki Web retrieved at 16:23 (GMT)

Avisos 28 Sep 2009 - 14:32 - r14 JorgeSousaPinto
28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ...
NoTas 28 Sep 2009 - 14:31 - r5 JorgeSousaPinto
Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ...
WebSideBar 03 Feb 2009 - 23:13 - r9 JorgeSousaPinto
Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos
MaterialApoio 17 Dec 2008 - 22:52 - r6 JorgeSousaPinto
Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ...
Sumarios 15 Dec 2008 - 15:44 - r14 JorgeSousaPinto
Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ...
Projectos 25 Oct 2008 - 11:10 - r3 JorgeSousaPinto
Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes
FaqProjecto 25 Oct 2008 - 11:06 - NEW JorgeSousaPinto
Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes
Avaliacao 18 Sep 2008 - 13:43 - NEW JorgeSousaPinto
Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ...
WebHome 18 Sep 2008 - 13:39 - r16 JorgeSousaPinto
Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ...
Equipa 17 Sep 2008 - 14:04 - NEW JorgeSousaPinto
Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento:
Programa 17 Sep 2008 - 13:56 - NEW JorgeSousaPinto
Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ...
Bibliografia 17 Sep 2008 - 13:45 - NEW JorgeSousaPinto
Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ...
WebPreferences 17 Sep 2008 - 13:17 - r16 AlcinoCunha
Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ...
WebStatistics 16 Sep 2008 - 22:50 - r351 TWikiGuest
Statistics for Education/AeC Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save ...
WebTopicActions 18 May 2007 - 08:03 - r2 AlcinoCunha
WebCss 16 Feb 2007 - 14:32 - r3 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/AeC web
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/AeC web"}% /Education/AeC
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
Found 27 topics.

See also: rss-small RSS feed, recent changes with 50, 100, 200, 500, 1000 topics, all changes

WebCss 16 Feb 2007 - 14:32 - r3 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; }

.natBreadCrumbs { width:0px; height:0px; overflow:hidden; }

.avisos { color: #444; font-size:12px; }

.natMainFooterContents, .natMainHeaderContents { padding:0px; margin:0px 0px; }

WebHome 18 Sep 2008 - 13:39 - r16 JorgeSousaPinto

Algorithms are fundamental to computer science and software engineering. The real-world performance of any software system depends on only two things: (1) the algorithms chosen and (2) the suitability and efficiency of the various layers of implementation. Good algorithm design is therefore crucial for the performance of al l software systems. Moreover, the study of algorithms provides insight into the intrinsic nature of the problem as well as possible solution techniques independent of programming language, programming paradigm, computer hardware, or any other implementation aspect. An important part of computing is the ability to select algorithms appropriate to particular purposes and to apply them, recognizing the possibility that no suitable algorithm may exist. This facility relies on understanding the range of algorithms that address an important set of well-defined problems, recognizing their strengths and weaknesses, and their suitability in particular contexts. Efficiency is a pervasive theme throughout this area.

in IEEECS-ACM Computing Curricula 2001

O objectivo principal da disciplina de Algoritmos e Complexidade é a introdução de técnicas para o desenho e análise de algoritmos. O ênfase é colocado nos algoritmos como objectos passíveis de serem analisados formalmente, mas também nos aspectos pragmáticos da sua execução. Esta abordagem requer pois dos alunos um trabalho quer ao nível teórico quer ao nível prático, laboratorial.

WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
Education/AeC Web Changed Changed by
Avaliacao 18 Sep 2008 - 13:43 - NEW JorgeSousaPinto
Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ...
Avisos 28 Sep 2009 - 14:32 - r14 JorgeSousaPinto
28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ...
Bibliografia 17 Sep 2008 - 13:45 - NEW JorgeSousaPinto
Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ...
Equipa 17 Sep 2008 - 14:04 - NEW JorgeSousaPinto
Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento:
FaqProjecto 25 Oct 2008 - 11:06 - NEW JorgeSousaPinto
Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes
MaterialApoio 17 Dec 2008 - 22:52 - r6 JorgeSousaPinto
Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ...
NoTas 28 Sep 2009 - 14:31 - r5 JorgeSousaPinto
Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ...
Programa 17 Sep 2008 - 13:56 - NEW JorgeSousaPinto
Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ...
Projectos 25 Oct 2008 - 11:10 - r3 JorgeSousaPinto
Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes
Sumarios 15 Dec 2008 - 15:44 - r14 JorgeSousaPinto
Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ...
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/AeC web
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebCss 16 Feb 2007 - 14:32 - r3 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebHome 18 Sep 2008 - 13:39 - r16 JorgeSousaPinto
Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ...
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
WebPreferences 17 Sep 2008 - 13:17 - r16 AlcinoCunha
Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ...
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/AeC web"}% /Education/AeC
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSideBar 03 Feb 2009 - 23:13 - r9 JorgeSousaPinto
Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos
WebStatistics 16 Sep 2008 - 22:50 - r351 TWikiGuest
Statistics for Education/AeC Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 18 May 2007 - 08:03 - r2 AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
Found 27 topics.

See also the faster WebTopicList

WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação
Sumários
Projectos
Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
This is a subscription service to be automatically notified by e-mail when topics change in this Education/AeC web. This is a convenient service, so you do not have to come back and check all the time if something has changed. To subscribe, please add a bullet with your WikiName in alphabetical order to this list:

Web Changes Notification Service

Each TWiki web has an automatic e-mail notification service that sends you an e-mail with links to all of the topics modified since the last alert.

Users subscribe to email notifications using their WikiName or an alternative email address, and can specify the webs/topics they wish to track using one of these bullet list formats:

three spaces * [ webname . ] wikiName - SMTP mail address
three spaces * [ webName . ] wikiName
three spaces * SMTP mail address
three spaces * SMTP mail address : topics
three spaces * [ webname . ] wikiName : topics

In the above examples, topics is a space-separated list of topic names. The user may further customize the specific content they will receive using the following formats:

  • Specify topics without a Web. prefix
  • Topics must exist in this web.
  • Topics may be specified using * wildcards
  • Each topic may optionally be preceded by a '+' or '-' sign. The '+' sign means "subscribe to this topic" (the same as not putting anything). The '-' sign means "unsubscribe" or "don't send notifications regarding this topic". This allows users to elect to filter out certain topics (and their children, to an arbitrary depth). Topic filters ('-') take precedence over topic includes ('+').
  • Each topic may optionally be followed by an integer in parentheses, indicating the depth of the tree of children below that topic. Changes in all these children will be detected and reported along with changes to the topic itself. Note This uses the TWiki "Topic parent" feature.
  • Each topic may optionally be immediately followed by an exclamation mark ! or a question mark ? with no intervening spaces, indicating that the topic (and children if there is a tree depth specifier as well) should be mailed out as complete topics instead of change summaries. ! causes the topic to be mailed every time even if there have been no changes, ? will mail the topic only if there have been changes to it. This only makes sense for subscriptions.

For example: Subscribe Daisy to all changes to topics in this web.

   * daisy.cutter@flowers.com
Subscribe Daisy to all changes in all webs that start with Web.
   * daisy.cutter@flowers.com: Web*
Subscribe Daisy to changes to topics starting with Petal, and their immediate children, WeedKillers and children to a depth of 3, and all topics that match start with Pretty and end with Flowers e.g. PrettyPinkFlowers
   * TWiki.DaisyCutter: Petal* (1) TWiki.WeedKillers (3) Pretty*Flowers
Subscribe StarTrekFan to changes to all topics that start with Star except those that end in Wars, sInTheirEyes or shipTroopers.
   * TWiki.StarTrekFan: Star* - *Wars - *sInTheirEyes - *shipTroopers
Subscribe Daisy to the full content of NewsLetter whenever it has changed
   * daisy@flowers.com: TWiki.NewsLetter?
Subscribe buttercup to NewsLetter and its immediate children, even if it hasn't changed.
   * buttercup@flowers.com: TWiki.NewsLetter! (1)
Subscribe GardenGroup (which includes Petunia) to all changed topics under AllnewsLetters to a depth of 3. Then unsubscribe Petunia from the ManureNewsLetter, which she would normally get as a member of GardenGroup? :
   * TWiki.GardenGroup: TWiki.AllNewsLetters? (3)
   * petunia@flowers.com: - TWiki.ManureNewsLetter
A user may be listed many times in the WebNotify topic. Where a user has several lines in WebNotify that all match the same topic, they will only be notified about changes that topic once (though they will still receive individual mails for news topics).

If a TWiki group is listed for notification, the group will be recursively expanded to the e-mail addresses of all members.

TIP Tip: List names in alphabetical order to make it easier to find the names.

Note for System Administrators: Notification is supported by an add-on to the TWiki kernel called the MailerContrib. See the MailerContrib topic for details of how to set up this service.

Note: If you prefer a news feed, point your reader to WebRss (for RSS 1.0 feeds) or WebAtom (for ATOM 1.0 feeds). Learn more at WebRssBase and WebAtomBase, respectively.

Related topics: WebChangesAlert, TWikiUsers, TWikiRegistration

WebPreferences 17 Sep 2008 - 13:17 - r16 AlcinoCunha

Education/AeC Web Preferences

The following settings are web preferences of the Education.AeC web. These preferences overwrite the site-level preferences in TWiki.TWikiPreferences and Main.TWikiPreferences, and can be overwritten by user preferences (your personal topic, eg: TWikiGuest in the Main web).

Web Preferences Settings

These settings override the defaults for this web only. See full list of defaults with explanation. Many of the settings below are commented out. Remove the # sign to enable a local customisation.

Natural Skin configuration

  • Set SKIN=nat

  • Set SKINSTYLE = Plain
  • Set STYLEBORDER = thin
  • Set STYLEBUTTONS = off
  • Set STYLESIDEBAR = left
  • Set STYLEVARIATION = none
  • Set STYLESEARCHBOX = off

  • Set PAGETITLE=Algoritmos e Complexidade

  • Set NATWEBLOGO = Algoritmos e Complexidade

  • Set WEBCOPYRIGHT = This site is powered by the TWiki collaboration platform Copyright © by the contributing authors. Ideas, requests, problems? Send feedback.

  • List of topics of the Education/AeC web:

 #D0D0D0 
  • Web-specific background color: (Pick a lighter one of the StandardColors).
    • Set WEBBGCOLOR = #D0D0D0
    • Note: This setting is automatically configured when you create a web

  • Image, URL and alternate tooltip text of web's logo.
    Note: Don't add your own local logos to the TWikiLogos topic; create your own logos topic instead.

  • List this web in the SiteMap. If you want the web listed, then set SITEMAPLIST to on, do not set NOSEARCHALL, and add the "what" and "use to..." description for the site map. Use links that include the name of the web, i.e. Education/AeC.Topic links.
    Note: Unlike other variables, the setting of SITEMAPLIST is not inherited from parent webs. It has to be set in every web that is to be listed in the SiteMap
    • Set SITEMAPLIST = on
    • Set SITEMAPWHAT = Algoritmos e Complexidade
    • Set SITEMAPUSETO = Licenciatura em Engenharia Informática
    • Note: Above settings are automatically configured when you create a web

  • Exclude web from a web="all" search: (Set to on for hidden webs).
    • Set NOSEARCHALL =
    • Note: This setting is automatically configured when you create a web

  • Prevent automatic linking of WikiWords and acronyms (if set to on); link WikiWords (if empty); can be overwritten by web preferences:
    • #Set NOAUTOLINK =
    • Note: You can still use the [[...][...]] syntax to link topics if you disabled WikiWord linking. The <noautolink> ... </noautolink> syntax can be used to prevents links within a block of text.

  • Default template for new topics for this web:
    • WebTopicEditTemplate? : Default template for new topics in this web. (Site-level is used if topic does not exist)
    • TWiki.WebTopicEditTemplate: Site-level default topic template

  • Comma separated list of forms that can be attached to topics in this web. See TWikiForms for more information.
    • Set WEBFORMS =

  • Users or groups who are not / are allowed to view / change / rename topics in the Education/AeC web: (See TWikiAccessControl). Remove the # to enable any of these settings. Remember that an empty setting is a valid setting; setting DENYWEBVIEW to nothing means that anyone can view the web.
    • #Set DENYWEBVIEW =
    • #Set ALLOWWEBVIEW =
    • #Set DENYWEBCHANGE =
    • Set ALLOWWEBCHANGE = JorgeSousaPinto
    • #Set DENYWEBRENAME =
    • Set ALLOWWEBRENAME = JorgeSousaPinto

  • Web preferences that are not allowed to be overridden by user or topic preferences:
    • Set FINALPREFERENCES = NOSEARCHALL, ATTACHFILESIZELIMIT, WIKIWEBMASTER, WEBCOPYRIGHT, WEBTOPICLIST, DENYWEBVIEW, ALLOWWEBVIEW, DENYWEBCHANGE, ALLOWWEBCHANGE, DENYWEBRENAME, ALLOWWEBRENAME

Help on Preferences

  • A preference setting is defined by:
    3 or 6 spaces * Set NAME = value
    Example:
    • Set WEBBGCOLOR = #FFFFC0
  • A preferences setting can be disabled with a # sign. Remove the # sign to enable a local customisation. Example:
  • Preferences are used as TWikiVariables by enclosing the name in percent signs. Example:
    • When you write variable %WEBBGCOLOR% , it gets expanded to #D0D0D0
  • The sequential order of the preference settings is significant. Define preferences that use other preferences first, i.e. set WEBCOPYRIGHT before WIKIWEBMASTER since %WEBCOPYRIGHT% uses the %WIKIWEBMASTER% variable.
  • You can introduce your own preferences variables and use them in your topics and templates.

Related Topics

Tools

WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
TWiki search results for \.* http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC The Education/AeC web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. en-us Copyright 2020 by contributing authors TWiki Administrator [webmaster@di.uminho.pt] The contributing authors of TWiki TWiki DIUM.Education/AeC http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC /twiki/pub/Main/LocalLogos/um_eengP.jpg Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avisos 28 de Setembro Notas do exame de época especial disponíveis nesta página. 14 de Setembro Exame disponível aqui. 25 de Fevereiro Notas do exame disponíveis nesta ... (last changed by JorgeSousaPinto) 2009-09-28T14:32:57Z JorgeSousaPinto NoTas http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/NoTas Notas Teste aqui Observação: uma nota final REP indica que o(a) aluno(a) obteve nota teórica inferior a 8 valores e devem portanto apresentar se a exame.. Os alunos ... (last changed by JorgeSousaPinto) 2009-09-28T14:31:23Z JorgeSousaPinto WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebSideBar Tópicos Apresentação Equipa Docente Programa Bibliografia Método de Avaliação Sumários Material Projectos Notas Avisos (last changed by JorgeSousaPinto) 2009-02-03T23:13:11Z JorgeSousaPinto MaterialApoio http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/MaterialApoio Material de Apoio aulas teóricas, Cap. 1 aulas teóricas, Cap. 2 aulas teóricas, Cap. 3 Exercícios (exames 2001 2004) Exames (2005 2008) ... (last changed by JorgeSousaPinto) 2008-12-17T22:52:32Z JorgeSousaPinto Sumarios http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Sumarios Sumários Aulas Teóricas 17/9/2008, 11:00 12:00 Apresentação do docente e da disciplina. Método de Avaliação. Programa e bibliografia recomendada. 19/9/2008, 14:00 ... (last changed by JorgeSousaPinto) 2008-12-15T15:44:12Z JorgeSousaPinto Projectos http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Projectos Mini Projecto Algoritmos e Complexidade 2008 09 Enunciado: Education/AeC.FaqProjecto Perguntas Frequentes (last changed by JorgeSousaPinto) 2008-10-25T11:10:07Z JorgeSousaPinto FaqProjecto http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/FaqProjecto Mini projecto Algoritmos e Complexidade 2008 09 Perguntas Frequentes (last changed by JorgeSousaPinto) 2008-10-25T11:06:20Z JorgeSousaPinto Avaliacao http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Avaliacao Método de Avaliação Os alunos serão avaliados por uma das seguintes fórmulas, segundo optem por realizar ou não um mini projecto opcional, a entregar e defender na ... (last changed by JorgeSousaPinto) 2008-09-18T13:43:31Z JorgeSousaPinto WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebHome Algorithms are fundamental to computer science and software engineering. The real world performance of any software system depends on only two things: (1) the algorithms ... (last changed by JorgeSousaPinto) 2008-09-18T13:39:03Z JorgeSousaPinto Equipa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Equipa Equipa Docente Sousa Pinto, T TP. Atendimento: 4a.fa. 14h 17h João Frade, TP. Atendimento: 5ª fa. 16h 19h Barros, TP. Atendimento: (last changed by JorgeSousaPinto) 2008-09-17T14:04:55Z JorgeSousaPinto Programa http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Programa Programa 1. Estruturas de Dados para pesquisa: Árvores AVL, hashing 2. Introdução à Análise de Algoritmos: Invariantes de ciclo e análise de correcção; An ... (last changed by JorgeSousaPinto) 2008-09-17T13:56:55Z JorgeSousaPinto Bibliografia http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/Bibliografia Bibliografia 1. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Cli #64256;ord Stein. Introduction to Algorithms, Second Edition. The MIT Press and ... (last changed by JorgeSousaPinto) 2008-09-17T13:45:06Z JorgeSousaPinto WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebPreferences Education/AeC Web Preferences The following settings are web preferences of the Education/AeC web. These preferences overwrite the site level preferences in ... (last changed by AlcinoCunha) 2008-09-17T13:17:54Z AlcinoCunha WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebTopicActions (last changed by AlcinoCunha) 2007-05-18T08:03:35Z AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebCss .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) 2007-02-16T14:32:59Z AlcinoCunha WebTopBar http://wiki.di.uminho.pt/twiki/bin/view/Education/AeC/WebTopBar (last changed by AlcinoCunha) 2007-02-13T14:43:04Z AlcinoCunha
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor

Web Search

Search: \.*

Found 0 topics.

  Advanced search | Help
TIP: to search for all topics that contain "SOAP", "WSDL", a literal "web service", but not "shampoo", write: soap wsdl "web service" -shampoo
Search where:       
(otherwise search Education/AeC Web only)

Other search options:
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor

Warning
Can't INCLUDE TWiki.WebSearchAdvanced repeatedly, topic is already included.
WebSideBar 03 Feb 2009 - 23:13 - r9 JorgeSousaPinto

Tópicos

Avisos

28 de Setembro Notas do exame de época especial disponíveis nesta página.

14 de Setembro Exame disponível aqui.

25 de Fevereiro Notas do exame disponíveis nesta página.

4 de Fevereiro Resolução sucinta do teste disponível aqui .

3 de Fevereiro Notas do teste disponíveis nesta página.

20 de Janeiro Teste (13 de Janeiro) disponível aqui.

29 de Dezembro Sessões de dúvidas: uma primeira sessão terá lugar na 5a.fa. 8 de Janeiro, às 16:00 no anfiteatro DI-A2.

17 de Dezembro Encontra-se no piso -2 do DI uma folha para marcação das entregas dos trabalhos práticos da disciplina, que terão lugar nos dias 5, 6, e 7 de Janeiro.

12 de Novembro Disponibilizadas hoje duas colecções de exercícios de exame.

21 de Outubro Disponível o enunciado do mini-projecto. As questões sobre o mesmo que forem colocadas por email à equipa docente serão disponibilizadas numa FAQ.

20 de Outubro Actualizados os slides disponíveis nesta página (todo o primeiro capítulo disponível).

17 Setembro Tiveram hoje início as aulas teóricas. As aulas TP, e respectiva marcação de turnos, iniciar-se-ão na próxima semana.

WebStatistics 16 Sep 2008 - 22:50 - r351 TWikiGuest

Statistics for Education/AeC Web

Month: Topic
views:
Topic
saves:
File
uploads:
Most popular
topic views:
Top contributors for
topic save and uploads:
Sep 2008 224 0 0  45 WebHome
 19 WebStatistics
 15 MaterialApoio
 14 Avisos
 13 Funcionamento?
 12 Calendario?
 12 Projectos
 12 Programa
  9 AvisosArquivo?
  8 WebSideBar
  7 WebTopicActions
 
Aug 2008 648 0 0  94 WebHome
 64 WebStatistics
 55 MaterialApoio
 53 Funcionamento?
 46 Avisos
 43 Projectos
 38 Programa
 30 Calendario?
 24 WebSideBar
 23 ViewSkinAlcinoTemplate?
 23 AvisosArquivo?
 
Jul 2008 2178 2 1 1161 WebHome
161 Funcionamento?
155 MaterialApoio
 79 Programa
 68 Projectos
 65 Avisos
 62 Calendario?
 52 WebStatistics
 50 WebPreferences
 40 WebSideBar
 33 WebTopicActions
  3 AlcinoCunha
Jun 2008 2025 8 2 836 WebHome
321 MaterialApoio
143 Funcionamento?
100 Programa
 95 WebStatistics
 85 Calendario?
 78 Projectos
 76 Avisos
 32 WebPreferences
 29 WebSideBar
 25 AvisosArquivo?
  9 LuisSoaresBarbosa
  1 AlcinoCunha
May 2008 1349 14 6 352 WebHome
205 MaterialApoio
105 WebStatistics
 99 Funcionamento?
 83 Programa
 80 Calendario?
 72 Avisos
 69 Projectos
 33 AvisosArquivo?
 27 WebTopBar
 26 WebPreferences
 17 LuisSoaresBarbosa
  3 AlcinoCunha
Apr 2008 1922 15 4 693 WebHome
347 MaterialApoio
125 Calendario?
125 Funcionamento?
107 Projectos
103 Programa
 98 WebStatistics
 56 Avisos
 29 WebSideBar
 24 WebPreferences
 21 AvisosArquivo?
 14 AlcinoCunha
  5 LuisSoaresBarbosa
Mar 2008 1722 11 6 490 WebHome
393 MaterialApoio
128 WebStatistics
117 Funcionamento?
116 Calendario?
 74 Programa
 65 Projectos
 44 Avisos
 34 WebSearch
 31 AvisosArquivo?
 25 WebSideBar
 17 AlcinoCunha
Feb 2008 1152 21 5 299 WebHome
210 MaterialApoio
136 Calendario?
 91 Funcionamento?
 74 WebStatistics
 64 Programa
 47 Projectos
 32 Avisos
 22 AvisosArquivo?
 19 WebSearch
 19 WebSideBar
 26 AlcinoCunha
Jan 2008 646 0 0 117 WebStatistics
 83 WebHome
 63 MaterialApoio
 57 Calendario?
 30 Avisos
 30 Programa
 28 Funcionamento?
 22 Projectos
 20 WebLeftBar
 20 AvisosArquivo?
 19 WebSideBar
 
Dec 2007 675 8 0 100 WebHome
 72 WebStatistics
 67 MaterialApoio
 60 Calendario?
 33 Funcionamento?
 32 WebPreferences
 32 Programa
 29 Avisos
 24 Projectos
 24 AvisosArquivo?
 23 WebSearch
  8 LuisSoaresBarbosa
Nov 2007 571 0 0  83 WebHome
 80 WebStatistics
 73 Funcionamento?
 68 Calendario?
 36 MaterialApoio
 31 Programa
 29 WebPreferences
 20 Avisos
 17 WebSearch
 17 WebChanges
 17 Projectos
 
Oct 2007 661 0 0 117 WebStatistics
 83 WebHome
 64 MaterialApoio
 46 Calendario?
 38 Avisos
 37 Funcionamento?
 35 WebPreferences
 28 Programa
 25 AvisosArquivo?
 23 Projectos
 20 WebLeftBar
 
Sep 2007 608 0 0 131 WebHome
 92 WebStatistics
 59 MaterialApoio
 57 Calendario?
 40 Funcionamento?
 36 Programa
 26 Projectos
 20 AvisosArquivo?
 18 WebPreferences
 15 Avisos
 14 WebSearch
 
Aug 2007 997 0 0 168 WebHome
144 WebStatistics
 82 Calendario?
 65 MaterialApoio
 65 Funcionamento?
 49 Avisos
 40 Programa
 39 Projectos
 37 WebPreferences
 37 AvisosArquivo?
 30 WebChanges
 
Jul 2007 6682 10 4 4473 WebHome
1347 MaterialApoio
129 Funcionamento?
104 Calendario?
 73 Avisos
 72 Programa
 66 Projectos
 50 AvisosArquivo?
 37 WebPreferences
 34 WebSideBar
 31 WebCss
 10 AlcinoCunha
  4 LuisSoaresBarbosa
Jun 2007 1671 0 0 654 WebHome
457 MaterialApoio
 79 Funcionamento?
 72 Calendario?
 64 Projectos
 62 Programa
 27 Avisos
 23 WebSearch
 22 WebTopicList
 21 WebChanges
 21 WebStatistics
 
May 2007 954 13 5 300 WebHome
203 MaterialApoio
 59 Calendario?
 46 Funcionamento?
 43 Projectos
 41 Programa
 36 Avisos
 31 WebTopicActions
 26 WebStatistics
 17 WebChanges
 16 WebPreferences
 11 LuisSoaresBarbosa
  7 AlcinoCunha
Apr 2007 1242 17 7 396 WebHome
308 MaterialApoio
 84 Calendario?
 76 Funcionamento?
 74 Projectos
 63 Programa
 31 Avisos
 21 WebPreferences
 21 WebStatistics
 19 WebChanges
 18 WebTopicList
 14 AlcinoCunha
 10 LuisSoaresBarbosa
Mar 2007 1244 15 5 417 WebHome
352 MaterialApoio
 89 Projectos
 71 Programa
 66 Calendario?
 56 Funcionamento?
 19 WebSideBar
 18 WebPreferences
 17 Avisos
 13 WebTopicList
 13 WebChanges
 20 AlcinoCunha
Feb 2007 1223 135 8 397 WebHome
150 MaterialApoio
115 Funcionamento?
115 Programa
 88 Calendario?
 85 WebPreferences
 57 Projectos
 39 WebSideBar
 31 WebCSS?
 13 WebSearch
 13 ViewSkinAlcinoTemplate?
140 AlcinoCunha
  3 LuisSoaresBarbosa

Notes:

  • Do not edit this topic, it is updated automatically. (You can also force an update)
  • TWikiDocumentation tells you how to enable the automatic updates of the statistics.
  • Suggestion: You could archive this topic once a year and delete the previous year's statistics from the table.
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 18 May 2007 - 08:03 - r2 AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor

Create New Topic in Education/AeC Web

Topic name:


It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed.

Topic parent:

Use template:

View templates


info Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor

See also the verbose WebIndex.

Found 27 topics.

  Simple search | Help
TIP: to search for all topics that contain "SOAP", "WSDL", a literal "web service", but not "shampoo", write: soap wsdl "web service" -shampoo
Search where:


(otherwise search Education/AeC Web only)
Sort results by:


Make search:
(semicolon ; for and) about regular expression search
Don't show:

Do show: about BookView
Limit results to: (all to show all topics)

Other search options:
WebSideBar 03 Feb 2009 - 23:13 - r9 JorgeSousaPinto

Tópicos

Avisos

28 de Setembro Notas do exame de época especial disponíveis nesta página.

14 de Setembro Exame disponível aqui.

25 de Fevereiro Notas do exame disponíveis nesta página.

4 de Fevereiro Resolução sucinta do teste disponível aqui .

3 de Fevereiro Notas do teste disponíveis nesta página.

20 de Janeiro Teste (13 de Janeiro) disponível aqui.

29 de Dezembro Sessões de dúvidas: uma primeira sessão terá lugar na 5a.fa. 8 de Janeiro, às 16:00 no anfiteatro DI-A2.

17 de Dezembro Encontra-se no piso -2 do DI uma folha para marcação das entregas dos trabalhos práticos da disciplina, que terão lugar nos dias 5, 6, e 7 de Janeiro.

12 de Novembro Disponibilizadas hoje duas colecções de exercícios de exame.

21 de Outubro Disponível o enunciado do mini-projecto. As questões sobre o mesmo que forem colocadas por email à equipa docente serão disponibilizadas numa FAQ.

20 de Outubro Actualizados os slides disponíveis nesta página (todo o primeiro capítulo disponível).

17 Setembro Tiveram hoje início as aulas teóricas. As aulas TP, e respectiva marcação de turnos, iniciar-se-ão na próxima semana.

WebStatistics 16 Sep 2008 - 22:50 - r351 TWikiGuest

Statistics for Education/AeC Web

Month: Topic
views:
Topic
saves:
File
uploads:
Most popular
topic views:
Top contributors for
topic save and uploads:
Sep 2008 224 0 0  45 WebHome
 19 WebStatistics
 15 MaterialApoio
 14 Avisos
 13 Funcionamento?
 12 Calendario?
 12 Projectos
 12 Programa
  9 AvisosArquivo?
  8 WebSideBar
  7 WebTopicActions
 
Aug 2008 648 0 0  94 WebHome
 64 WebStatistics
 55 MaterialApoio
 53 Funcionamento?
 46 Avisos
 43 Projectos
 38 Programa
 30 Calendario?
 24 WebSideBar
 23 ViewSkinAlcinoTemplate?
 23 AvisosArquivo?
 
Jul 2008 2178 2 1 1161 WebHome
161 Funcionamento?
155 MaterialApoio
 79 Programa
 68 Projectos
 65 Avisos
 62 Calendario?
 52 WebStatistics
 50 WebPreferences
 40 WebSideBar
 33 WebTopicActions
  3 AlcinoCunha
Jun 2008 2025 8 2 836 WebHome
321 MaterialApoio
143 Funcionamento?
100 Programa
 95 WebStatistics
 85 Calendario?
 78 Projectos
 76 Avisos
 32 WebPreferences
 29 WebSideBar
 25 AvisosArquivo?
  9 LuisSoaresBarbosa
  1 AlcinoCunha
May 2008 1349 14 6 352 WebHome
205 MaterialApoio
105 WebStatistics
 99 Funcionamento?
 83 Programa
 80 Calendario?
 72 Avisos
 69 Projectos
 33 AvisosArquivo?
 27 WebTopBar
 26 WebPreferences
 17 LuisSoaresBarbosa
  3 AlcinoCunha
Apr 2008 1922 15 4 693 WebHome
347 MaterialApoio
125 Calendario?
125 Funcionamento?
107 Projectos
103 Programa
 98 WebStatistics
 56 Avisos
 29 WebSideBar
 24 WebPreferences
 21 AvisosArquivo?
 14 AlcinoCunha
  5 LuisSoaresBarbosa
Mar 2008 1722 11 6 490 WebHome
393 MaterialApoio
128 WebStatistics
117 Funcionamento?
116 Calendario?
 74 Programa
 65 Projectos
 44 Avisos
 34 WebSearch
 31 AvisosArquivo?
 25 WebSideBar
 17 AlcinoCunha
Feb 2008 1152 21 5 299 WebHome
210 MaterialApoio
136 Calendario?
 91 Funcionamento?
 74 WebStatistics
 64 Programa
 47 Projectos
 32 Avisos
 22 AvisosArquivo?
 19 WebSearch
 19 WebSideBar
 26 AlcinoCunha
Jan 2008 646 0 0 117 WebStatistics
 83 WebHome
 63 MaterialApoio
 57 Calendario?
 30 Avisos
 30 Programa
 28 Funcionamento?
 22 Projectos
 20 WebLeftBar
 20 AvisosArquivo?
 19 WebSideBar
 
Dec 2007 675 8 0 100 WebHome
 72 WebStatistics
 67 MaterialApoio
 60 Calendario?
 33 Funcionamento?
 32 WebPreferences
 32 Programa
 29 Avisos
 24 Projectos
 24 AvisosArquivo?
 23 WebSearch
  8 LuisSoaresBarbosa
Nov 2007 571 0 0  83 WebHome
 80 WebStatistics
 73 Funcionamento?
 68 Calendario?
 36 MaterialApoio
 31 Programa
 29 WebPreferences
 20 Avisos
 17 WebSearch
 17 WebChanges
 17 Projectos
 
Oct 2007 661 0 0 117 WebStatistics
 83 WebHome
 64 MaterialApoio
 46 Calendario?
 38 Avisos
 37 Funcionamento?
 35 WebPreferences
 28 Programa
 25 AvisosArquivo?
 23 Projectos
 20 WebLeftBar
 
Sep 2007 608 0 0 131 WebHome
 92 WebStatistics
 59 MaterialApoio
 57 Calendario?
 40 Funcionamento?
 36 Programa
 26 Projectos
 20 AvisosArquivo?
 18 WebPreferences
 15 Avisos
 14 WebSearch
 
Aug 2007 997 0 0 168 WebHome
144 WebStatistics
 82 Calendario?
 65 MaterialApoio
 65 Funcionamento?
 49 Avisos
 40 Programa
 39 Projectos
 37 WebPreferences
 37 AvisosArquivo?
 30 WebChanges
 
Jul 2007 6682 10 4 4473 WebHome
1347 MaterialApoio
129 Funcionamento?
104 Calendario?
 73 Avisos
 72 Programa
 66 Projectos
 50 AvisosArquivo?
 37 WebPreferences
 34 WebSideBar
 31 WebCss
 10 AlcinoCunha
  4 LuisSoaresBarbosa
Jun 2007 1671 0 0 654 WebHome
457 MaterialApoio
 79 Funcionamento?
 72 Calendario?
 64 Projectos
 62 Programa
 27 Avisos
 23 WebSearch
 22 WebTopicList
 21 WebChanges
 21 WebStatistics
 
May 2007 954 13 5 300 WebHome
203 MaterialApoio
 59 Calendario?
 46 Funcionamento?
 43 Projectos
 41 Programa
 36 Avisos
 31 WebTopicActions
 26 WebStatistics
 17 WebChanges
 16 WebPreferences
 11 LuisSoaresBarbosa
  7 AlcinoCunha
Apr 2007 1242 17 7 396 WebHome
308 MaterialApoio
 84 Calendario?
 76 Funcionamento?
 74 Projectos
 63 Programa
 31 Avisos
 21 WebPreferences
 21 WebStatistics
 19 WebChanges
 18 WebTopicList
 14 AlcinoCunha
 10 LuisSoaresBarbosa
Mar 2007 1244 15 5 417 WebHome
352 MaterialApoio
 89 Projectos
 71 Programa
 66 Calendario?
 56 Funcionamento?
 19 WebSideBar
 18 WebPreferences
 17 Avisos
 13 WebTopicList
 13 WebChanges
 20 AlcinoCunha
Feb 2007 1223 135 8 397 WebHome
150 MaterialApoio
115 Funcionamento?
115 Programa
 88 Calendario?
 85 WebPreferences
 57 Projectos
 39 WebSideBar
 31 WebCSS?
 13 WebSearch
 13 ViewSkinAlcinoTemplate?
140 AlcinoCunha
  3 LuisSoaresBarbosa

Notes:

  • Do not edit this topic, it is updated automatically. (You can also force an update)
  • TWikiDocumentation tells you how to enable the automatic updates of the statistics.
  • Suggestion: You could archive this topic once a year and delete the previous year's statistics from the table.
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 18 May 2007 - 08:03 - r2 AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor

Create New Topic in Education/AeC Web

Topic name:


It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed.

Topic parent:

Use template:

View templates


info Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor

See also the verbose WebIndex.

Found 27 topics.
This site is powered by the TWiki collaboration platform Copyright © by the contributing authors. Ideas, requests, problems? Send feedback.
Syndicate this site RSSATOM